Analysis of MongoDB user management _mongodb

Source: Internet
Author: User
Tags mongodb

1. Create a Super User

Use admin
db.createuser (
  {
    User: "Adminusername",
    pwd: "UserPassword",
    roles:
    [
      {
        roles: "Useradminanydatabase",
        DB: "admin"
      }
)

There are two types of superuser role, useradmin or useradminanydatabase (more access to all databases than the previous one).

DB is the name of the specified database, and admin is the admin database.

2. Log in with the newly created user

MONGO--host xxx-u adminusername-p userpassword--authenticationdatabase Admin

3. View current user's permissions

Db.runcommand (
  {
    usersinfo: "UserName",
    showprivileges:true
  }
)

4. Create a general user, but also with CreateUser

Use Db01
db.createuser (
  {
    User: Oneuser),
    pwd: "12345",
    roles:[{role
      : "read", DB: "Db01"},
      {role: "read", DB: "DB02"},
      {role: "read", DB: "DB03"}
    ]
  }
)

5. Create a superuser who is not subject to access restrictions

Use admin
db.createuser (
  {
    User: "Superuser",
    pwd: "pwd",
    roles:["root"
  )}
)

6. Change Password

Use admin
db.changeuserpassword ("username", "xxx")

7. View user Information

Db.runcommand ({usersinfo: "UserName"})

8. Modify password and user information

Db.runcommand (
  {
    updateuser: "username",
    pwd: "xxx",
    customdata:{title: "xxx"}
)

Note:

1. and user management related operations are basically under the admin database to run, first use admin;

2. If in a single database, it can only operate on the permissions of the current database;

3. The Db.adduser is an older version of the operation and is now still available, and the user created is a super administrator with root role.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.