Skip to content

Instantly share code, notes, and snippets.

@ramonfritsch
Created January 13, 2016 21:49
Show Gist options
  • Save ramonfritsch/2cb12f6b94e145451b6e to your computer and use it in GitHub Desktop.
Save ramonfritsch/2cb12f6b94e145451b6e to your computer and use it in GitHub Desktop.
Create root user on MongoDB
use admin;
db.createUser(
{
user: "user",
pwd: "pass",
roles: [ "root" ]
}
);
use database;
db.createUser(
{
user: "user",
pwd: "pass",
roles: [ { role: "readWrite", db: "database" } ]
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment