首頁  >  文章  >  資料庫  >  如何在 MongoDB v3 中建立使用者?

如何在 MongoDB v3 中建立使用者?

PHPz
PHPz轉載
2023-09-13 11:05:02707瀏覽

如何在 MongoDB v3 中创建用户?

要在 MongoDB v3 中建立用戶,請使用 createUser() 方法。這允許您建立用戶,並且在創建時還需要添加用戶、密碼和角色。這些角色分配權限。語法如下-

use admin
db.createUser(
   {
      user: “yourUserName",
      pwd: "yourPassword",
      roles: [ { role: "yourPermission", db: "yourDatabase" } ]
   }
);

讓我們實作上述語法以便在MongoDB v3 中建立使用者-

> use admin
switched to db admin
> db.createUser(
...    {
...       user: "Robert",
...       pwd: "robert",
...       roles: [ { role: "readWrite", db: "sample" } ]
...    }
... );

在上面,我們為新使用者設定了以下內容-

User: Robert
Password: robert
Roles: readWrite
This will produce the following output:
Successfully added user: {
   "user" : "Robert",
   "roles" : [
      {
         "role" : "readWrite",
         "db" : "sample"
      }
   ]
}

我們已經在上面成功創建了一個新用戶“Robert”。

以上是如何在 MongoDB v3 中建立使用者?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除