Skip to content

Instantly share code, notes, and snippets.

@Maurifc
Created August 1, 2023 12:33
Show Gist options
  • Save Maurifc/e4fc34e01dd517c1c448f618684541d5 to your computer and use it in GitHub Desktop.
Save Maurifc/e4fc34e01dd517c1c448f618684541d5 to your computer and use it in GitHub Desktop.
Commands to create a MongoDB user
// Change database
use mydb
// Create user
db.createUser(
{
user: "john",
pwd: "123567",
roles:["readWrite"]
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment