【发布时间】:2014-07-19 13:37:08
【问题描述】:
我正在尝试向我的 MongoDB 添加授权。
我正在使用 MongoDB 2.6.1 在 Linux 上执行所有这些操作。
我的 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 用户被授权做任何事情,以便
然后他可以创建其他用户并赋予他们更具体的权限。
【问题讨论】:
-
这很烦人或记录不充分。我在那里苦苦挣扎。最后,我有一个具有全局“root”角色的用户,但仍然无法执行某些操作,例如执行命令...