mongodb建立使用者和庫

來源:互聯網
上載者:User

標籤:備份   clu   shel   添加使用者   res   file   建立資料庫   驗證   com   

1、添加一個 userAdminAnyDatabase 使用者,這是一個能夠管理所有使用者的的使用者, 類似於超級管理員吧
#開啟mongo shell
#添加超級管理帳號
> use admin #進入admin表

> db.createUser(
... {
... user:"myadmin",
... pwd:"redhat",
... roles:[{role:"root",db:"admin"}]
... }
... )
Successfully added user: {
    "user" : "myadmin",
    "roles" : [
        {
            "role" : "root",
            "db" : "admin"
        }
    ]
}

# 查看使用者是否建立成功

> show users
{
    "_id" : "admin.myadmin",
    "user" : "myadmin",
    "db" : "admin",
    "roles" : [
        {
            "role" : "root",
            "db" : "admin"
        }
    ],
    "mechanisms" : [
        "SCRAM-SHA-1",
        "SCRAM-SHA-256"
    ]
}

啟用驗證

/mongo.conf中


1
auth=true
重啟mongo
1 > sudo service mongod restart



mongodb 有哪些許可權:


1. 資料庫使用者角色:read、readWrite;  2. 資料庫管理角色:dbAdmin、dbOwner、userAdmin;       3. 叢集管理角色:clusterAdmin、clusterManager、clusterMonitor、hostManager;4. 備份恢複角色:backup、restore;5. 所有資料庫角色:readAnyDatabase、readWriteAnyDatabase、userAdminAnyDatabase、dbAdminAnyDatabase6. 超級使用者角色:root  // 這裡還有幾個角色間接或直接提供了系統超級使用者的訪問(dbOwner 、userAdmin、userAdminAnyDatabase)7. 內部角色:__system


read:允許使用者讀取指定資料庫
 readWrite:允許使用者讀寫指定資料庫
 dbAdmin:允許使用者在指定資料庫中執行管理函數,如索引建立、刪除,查看統計或訪問system.profile
 userAdmin:允許使用者向system.users集合寫入,可以找指定資料庫裡建立、刪除和系統管理使用者
 clusterAdmin:只在admin資料庫中可用,賦予使用者所有分區和複製集相關函數的系統管理權限。
 readAnyDatabase:只在admin資料庫中可用,賦予使用者所有資料庫的讀許可權
 readWriteAnyDatabase:只在admin資料庫中可用,賦予使用者所有資料庫的讀寫權限
 userAdminAnyDatabase:只在admin資料庫中可用,賦予使用者所有資料庫的userAdmin許可權
 dbAdminAnyDatabase:只在admin資料庫中可用,賦予使用者所有資料庫的dbAdmin許可權。
 root:只在admin資料庫中可用。超級帳號,超級許可權


2、驗證使用者登入
# 注意: 這裡要驗證剛才建立的使用者,必須要先切換到admin庫
>use admin> show users2018-07-24T14:16:54.507+0800 E QUERY    [js] Error: not authorized on admin to execute command { usersInfo: 1.0, $db: "admin" } :[email protected]/mongo/shell/utils.js:25:13[email protected]/mongo/shell/db.js:1757:1[email protected]/mongo/shell/utils.js:848:9[email protected]/mongo/shell/utils.js:755:15@(shellhelp2):1:1
# 驗證使用者>db.auth('myadmin', 'redhat')1 # 輸出1 表示驗證成功# 再次執行 >show dbs> show dbsadmin   0.000GBconfig  0.000GBlocal   0.000GBmydb    0.000GB>
3、建立資料庫

文法:
use DATABASE 語句的基本文法如下:

use DATABASE_NAME

樣本:
如果想建立一個資料庫名稱 , 那麼 use DATABASE 語句如下:

>use mydbswitched to db mydb

要檢查當前選擇的資料庫使用命令 db

>dbmydb

如果想檢查資料庫列表,使用命令show dbs

> show dbs
admin   0.000GB
config  0.000GB
local   0.000GB

建立的資料庫mydb 列表中是不存在的。要顯示的資料庫,需要把它插入至少一個檔案。

> db.mydb.insert({"name":"user1"})
WriteResult({ "nInserted" : 1 })
> show dbs
admin   0.000GB
config  0.000GB
local   0.000GB
mydb    0.000GB
>

4、為單個資料庫添加系統管理使用者


# 切換到要添加使用者的資料庫中

> db.createUser({
... user:'cara',
... pwd:'redhat',
... roles:[{role:"readWrite",db:"mydb"}]
... })
Successfully added user: {
    "user" : "cara",
    "roles" : [
        {
            "role" : "readWrite",
            "db" : "mydb"
        }
    ]
}

#返回fuccessfully 表示成功了~~~# 查看剛才建立的使用者

> show users
{
    "_id" : "mydb.cara",
    "user" : "cara",
    "db" : "mydb",
    "roles" : [
        {
            "role" : "readWrite",
            "db" : "mydb"
        }
    ],
    "mechanisms" : [
        "SCRAM-SHA-1",
        "SCRAM-SHA-256"
    ]
}

mongodb建立使用者和庫

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.