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 check the version of MongoDB?
- How to use triggers in MongoDB?
- How to work with time series data in MongoDB?
- How to create a many to many relation in MongoDB?
- How to perform a health check for MongoDB?
- How to drop a database in MongoDB?
- How to use MongoDB queue?
- How to use unwind in MongoDB?
- How to update many documents in MongoDB?
See more codes...