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 work with time series data in MongoDB?
- How to empty an array in MongoDB?
- How to use watch in MongoDB?
- How to check the version of MongoDB?
- How to use MongoDB pull?
- How to create a many to many relation in MongoDB?
- How to rename a field in MongoDB?
- How to kill an operation in MongoDB?
- How to check if array is empty in MongoDB?
- How to join two collections in MongoDB?
See more codes...