Skip to content

Instantly share code, notes, and snippets.

@paambaati
Created May 17, 2014 05:20
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save paambaati/990c6050bd92836137f1 to your computer and use it in GitHub Desktop.
Save paambaati/990c6050bd92836137f1 to your computer and use it in GitHub Desktop.
Add an administrator account to MongoDB instance
db.createUser(
{
user: "admin_username",
pwd: "admin_password",
roles:
[
{
role: "userAdminAnyDatabase",
db: "admin"
}
]
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment