mongodbHow to list MongoDB users?
MongoDB users can be listed using the db.getUsers()
command. This command will return a list of all users in the current database.
Example
> use mydb
switched to db mydb
> db.getUsers()
[
{
"_id" : "mydb.user1",
"user" : "user1",
"db" : "mydb",
"roles" : [
{
"role" : "readWrite",
"db" : "mydb"
}
]
},
{
"_id" : "mydb.user2",
"user" : "user2",
"db" : "mydb",
"roles" : [
{
"role" : "readWrite",
"db" : "mydb"
}
]
}
]
Code explanation
db.getUsers()
: command to list all users in the current database
Helpful links
More of Mongodb
- How to use watch in MongoDB?
- How to update one document in MongoDB?
- How to select specific fields in MongoDB query?
- How to insert new document into MongoDB?
- How to kill an operation in MongoDB?
- How to use hint in MongoDB?
- How to sort MongoDB query results?
- How to implement pagination in MongoDB?
- How to set MongoDB oplog?
- How to rename a field in MongoDB?
See more codes...