Skip to content

Instantly share code, notes, and snippets.

@shamalroy
Created August 15, 2015 01:40
Show Gist options
  • Save shamalroy/0c1977acfcdbc0ee6c61 to your computer and use it in GitHub Desktop.
Save shamalroy/0c1977acfcdbc0ee6c61 to your computer and use it in GitHub Desktop.
MongoDB create user
use myDB
db.createUser(
{
user: "userName",
pwd: "abc123",
roles: ["readWrite"]
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment