Skip to content

Instantly share code, notes, and snippets.

@scizers
Last active September 9, 2017 23:18
Show Gist options
  • Save scizers/ee546c833111ab15f109 to your computer and use it in GitHub Desktop.
Save scizers/ee546c833111ab15f109 to your computer and use it in GitHub Desktop.
add admin user to mongodb
use admin
db.createUser(
{
user: "admin",
pwd: "alum123#",
roles: [ { role: "userAdminAnyDatabase", db: "admin" } ]
}
)
db.createUser(
{
user: "root",
pwd: "1234556#",
roles: [ "root" ]
}
)
mongodump --db nextcampus
mongorestore dump
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment