MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Aggiungi un utente semplice di lettura e scrittura in mongo 3.4.1

Dal sito web:

Se vuoi l'output desiderato, credo che devi solo andare al database admin use admin e crea un utente con il seguente comando:

db.createUser(
  {
    user: "normal",
    pwd: "anotherpass",
    roles: [ { role: "readWrite", db: "mydb" } ]
  }
)