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 use unwind in MongoDB?
- How to rename a field in MongoDB?
- How to insert new document into MongoDB?
- How to remove a field from MongoDB?
- How to use triggers in MongoDB?
- How to do text search in MongoDB?
- How to use transactions in MongoDB?
- How to find by id in MongoDB?
- How to check the version of MongoDB?
See more codes...