Answers for "mongodb add user and password to database"

1

connect to mongodb with username and password

->First run mongoDB on terminal using
mongod

->now run mongo shell use following commands

    use admin
db.createUser(
  {
    user: "myUserAdmin",
    pwd: "abc123",
    roles: [ { role: "userAdminAnyDatabase", db: "admin" } ]
  }
)

->Re-start the MongoDB instance with access control.
mongod --auth

->Now authenticate yourself from the command line using
mongo --port 27017 -u "myUserAdmin" -p "abc123" --authenticationDatabase "admin"

->You can read it from
https://docs.mongodb.com/manual/tutorial/enable-authentication/
Posted by: Guest on April-13-2021
3

mongodb create user

use admin
db.createUser(
   {
     user: "restricted",
     pwd: passwordPrompt(),      // Or  "<cleartext password>"
     roles: [ { role: "readWrite", db: "reporting" } ],
     authenticationRestrictions: [ {
        clientSource: ["192.0.2.0"],
        serverAddress: ["198.51.100.0"]
     } ]
   }
)
Posted by: Guest on June-02-2020
-1

mongodb add admin user

use admin
db.createUser({
  user: "username",
  pwd: "password",
  roles: [ "root" ]
})
Posted by: Guest on July-17-2020
0

mongodb create database with username and password

use mydb
db.createUser(
   {
     user: "myuser",
     pwd: "mypassword",
     roles: [ "dbOwner" ]
   }
)
Posted by: Guest on September-04-2021

Code answers related to "mongodb add user and password to database"

Code answers related to "Javascript"

Browse Popular Code Answers by Language