我正在尝试向我的MongoDB添加授权。
我正在Linux上使用MongoDB 2.6.1进行所有操作。
我的mongod.conf文件采用旧的兼容格式
(这是安装过程中附带的格式)。
1)我按照(3)所述创建了管理员用户
http://docs.mongodb.org/manual/tutorial/add-user-administrator/
2)然后我通过取消注释此行来编辑mongod.conf
auth = true
3)最后,我重新启动了mongod服务,并尝试使用以下方式登录:
/usr/bin/mongo localhost:27017/admin -u sa -p pwd
4)我可以连接,但连接时会说。
MongoDB shell version: 2.6.1
connecting to: localhost:27017/admin
Welcome to the MongoDB shell!
The current date/time is: Thu May 29 2014 17:47:16 GMT-0400 (EDT)
Error while trying to show server startup warnings: not authorized on admin to execute command { getLog: "startupWarnings" }
5)现在看来,sa
我创建的该用户完全没有权限。
root@test02:~# mc
MongoDB shell version: 2.6.1
connecting to: localhost:27017/admin
Welcome to the MongoDB shell!
The current date/time is: Thu May 29 2014 17:57:03 GMT-0400 (EDT)
Error while trying to show server startup warnings: not authorized on admin to execute command { getLog: "startupWarnings" }
[admin] 2014-05-29 17:57:03.011 >>> use admin
switched to db admin
[admin] 2014-05-29 17:57:07.889 >>> show collections
2014-05-29T17:57:10.377-0400 error: {
"$err" : "not authorized for query on admin.system.namespaces",
"code" : 13
} at src/mongo/shell/query.js:131
[admin] 2014-05-29 17:57:10.378 >>> use test
switched to db test
[test] 2014-05-29 17:57:13.466 >>> show collections
2014-05-29T17:57:15.930-0400 error: {
"$err" : "not authorized for query on test.system.namespaces",
"code" : 13
} at src/mongo/shell/query.js:131
[test] 2014-05-29 17:57:15.931 >>>
问题是什么?我将整个过程重复了3次,
我认为我按照MongoDB文档中的说明进行了所有操作。但这是行不通的。
我期望该sa
用户有权执行任何操作,以便
他可以随后创建其他用户并为他们提供更具体的权限。