-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #267 from ant-media/update_faq
Update faq.md
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,7 +50,7 @@ If you're using ```mongodb``` as the database, your password will be stored in t | |
* Type ```use serverdb;``` | ||
* Type ```db.User.find()``` and it shows you the output like below. ```{ "_id" : ObjectId("5ea486690f09e71c2462385a"), "className" : "io.antmedia.rest.model.User", "email" : "[email protected]", "password" : "1234567", "userType" : "ADMIN" }``` | ||
* You can update the password with a command something like below. Change the parameters below according to the your case. ```db.User.updateOne( { email:"[email protected]" }, { $set: { "password" : "test123" }})``` | ||
* Alternatively, you can delete the user with a command something like below. Change the parameters below according to the your case. ```db.User.deleteOne( { "email": "[email protected]" } )``` | ||
* Alternatively, you can delete the user with a command something like below. Change the parameters below according to the your case. ```db.user.deleteOne( { "email": "[email protected]" } )``` | ||
* As of version 2.3.2, passwords should be hashed with MD5. | ||
|
||
## What is HLS? | ||
|