mongodbHow to add a user in MongoDB?
Adding a user in MongoDB is a simple process.
use admin
db.createUser({
user: "username",
pwd: "password",
roles: [{ role: "readWrite", db: "databaseName" }]
})
The output of the above command should be:
Successfully added user: {
"user" : "username",
"roles" : [
{
"role" : "readWrite",
"db" : "databaseName"
}
]
}
Code explanation
use admin
: This command is used to switch to the admin database.db.createUser
: This command is used to create a new user.user
: This is the username of the user.pwd
: This is the password of the user.roles
: This is an array of roles that the user will have.
Helpful links
More of Mongodb
- How to empty an array in MongoDB?
- How to use watch in MongoDB?
- How to update an array element in MongoDB?
- How to use unwind in MongoDB?
- How to remove a field from MongoDB?
- How to select specific fields in MongoDB query?
- How to join two collections in MongoDB?
- How to insert new document into MongoDB?
- How to check the version of MongoDB?
- How to update one document in MongoDB?
See more codes...