3
我有我的蒙戈安裝如下創建一個管理員用戶:創建管理員用MongoDB的v2.4.8「dbAdminAnyDatabse」的角色
> use admin
> db.addUser({ user: "test",
pwd: "password",
roles: [ "dbAdminAnyDatabse",
otherDBRoles:
{
"otherTestDB": [ "readWrite" ]
}]
})
當我嘗試連接到「otherTestDB」使用用戶:「測試」和pwd:「密碼」與robomongo或java驅動程序我得到一個錯誤的認證錯誤。
哪裏有錯?
有沒有辦法創建一個在任何數據庫上都擁有root權限的用戶? – Modi