Skip to content

Instantly share code, notes, and snippets.

@SxDx
Created July 15, 2020 09:30
Show Gist options
  • Save SxDx/2864af1942ec17f2229532bd53f73875 to your computer and use it in GitHub Desktop.
Save SxDx/2864af1942ec17f2229532bd53f73875 to your computer and use it in GitHub Desktop.
MongoDB Dev User Permissions
db.createUser(
{
user: 'mongo',
pwd: '$PASSWORD',
roles: [ { role: 'root', db: 'admin' } ]
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment