我想为我的MongoDB实例设置用户名和密码身份验证,以便任何远程访问都将要求提供用户名和密码。我尝试了MongoDB站点的教程,并做了以下工作:
use admin
db.addUser('theadmin', '12345');
db.auth('theadmin','12345');
在那之后,我退出了,再次跑了mongo。而且我不需要密码就能进入。即使我远程连接到数据库,也不会提示我输入用户名和密码。
这是我最终使用的解决方案
1) At the mongo command line, set the administrator:
use admin;
db.addUser('admin','123456');
2) Shutdown the server and exit
db.shutdownServer();
exit
3) Restart mongod with --auth
$ sudo ./mongodb/bin/mongod --auth --dbpath /mnt/db/
4) Run mongo again in 2 ways:
i) run mongo first then login:
$ ./mongodb/bin/mongo localhost:27017
use admin
db.auth('admin','123456');
ii) run & login to mongo in command line.
$ ./mongodb/bin/mongo localhost:27017/admin -u admin -p 123456
用户名和密码将以同样的方式工作在mongodb和mongoexport。
这个答案是针对Mongo 3.2.1的
参考
终端1:
$ mongod --auth
终端2:
db.createUser({user:"admin_name", pwd:"1234",roles:["readWrite","dbAdmin"]})
如果你想添加没有角色(可选):
db.createUser({user:"admin_name", pwd:"1234", roles:[]})
检查是否认证:
db.auth("admin_name", "1234")
它应该给你:
1
其他:
Error: Authentication failed.
0
我已经在6.0版中做到了这一点
如何设置数据库的用户名和密码;
安装MongoDB 6.0或更高版本
使用compass在MongoDB中创建数据库(不管名字是什么)
安装MongoDB Shell
https://www.mongodb.com/try/download/shell
打开cmd
cd C:\Program Files\mongosh
mongosh“mongodb: / / localhost: 27017”
使用#您的数据库名称#
db。createUser({user: "xxx", pwd: "xxx", roles: [{role: "readWrite", db: "xxx"}]})
这是我为ubuntu 20.04和mongodb enterprise 4.4.2所做的:
在终端中输入mongo启动mongo shell。
使用管理数据库:
use admin
创建一个新用户并分配你想要的角色:
use admin
db.createUser(
{
user: "myUserAdmin",
pwd: passwordPrompt(), // or cleartext password
roles: [ { role: "userAdminAnyDatabase", db: "admin" }, "readWriteAnyDatabase" ]
}
)
退出mongo,在etc/mongo .conf中添加如下一行:
security:
authorization: enabled
重启mongodb服务器
(可选)6。如果你想让你的用户拥有root权限,你可以在创建用户时指定:
db.createUser(
{
user: "myUserAdmin",
pwd: passwordPrompt(), // or cleartext password
roles: [ { role: "userAdminAnyDatabase", db: "admin" }, "readWriteAnyDatabase" ]
}
)
或者您可以使用以下命令更改用户角色:
db.grantRolesToUser('admin', [{ role: 'root', db: 'admin' }])