MongoDB - 管理员用户未授权

我正在尝试向我的 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 后一切正常。

use admin
db.createUser(
  {
    user: 'admin',
    pwd: 'password',
    roles: [ { role: 'root', db: 'admin' } ]
  }
);
exit;

如果您已经创建了 admin 用户,您可以像这样更改角色:

use admin;
db.grantRolesToUser('admin', [{ role: 'root', db: 'admin' }])

有关完整的身份验证设置引用,请参阅 steps我在互联网上进行了数小时的研究后编译。

https://stackoverflow.com/questions/23943651/

相关文章:

javascript - 找不到模块 '../build/Release/bson' ] 代码 :

mongodb - MongoDB 的命名约定是什么?

mongodb - Elasticsearch vs.用于过滤应用程序的 MongoDB

mongodb - 如何部分更新 MongoDB 中的对象,以便新对象与现有对象重叠/合并

datetime - 在 mongodb 中存储日期/时间的最佳方法

database - 如何列出 mongo shell 中的所有数据库?

mongodb - DynamoDB 与 MongoDB NoSQL

json - JSON文件的mongoimport

mongodb - 我怎么知道 mongoDB 在哪里存储数据? (它不在 default/data

mongodb - 将图像存储在 MongoDB 数据库中