在服务器上
我的服务器上运行着 Mongod 实例。
我在管理员上创建了一个用户,使用它在readWrite
我想要访问的数据库上创建了一个具有角色的用户。
更新了 mongo/etc/mongod.conf
文件:
commented out the bind ip
uncommented auth=yes
重新启动Mongod
使用sudo service mongod restart
在客户端:
该db.auth(user,pass)
命令在远程服务器上运行良好,但在客户端(我的家庭系统)上显示身份验证失败。
我确保我在use myDb
命令中使用了正确的数据库。
PS。我可以使用该mongo xx.xx.xx.xx:27017
命令连接到 mongo 服务器。但无法认证。
请帮忙。蒙戈 v3.0.3。