lemp-stack icon indicating copy to clipboard operation
lemp-stack copied to clipboard

Include MongoDB installation?

Open lucien144 opened this issue 7 years ago • 1 comments

Ref: https://www.digitalocean.com/community/tutorials/how-to-install-and-secure-mongodb-on-ubuntu-16-04

lucien144 avatar Nov 14 '17 00:11 lucien144

How to create a root user:

use admin
db.createUser(
  {
    user: "root",
    pwd: "*******",
    roles: ["root"]
  }
)

lucien144 avatar Nov 15 '17 03:11 lucien144