Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在使用 mongo 数据库时遇到问题。
当我运行服务器时,我不断收到此错误,并且我已导出密码。
{ [MongoError: auth fails] name: 'MongoError', errmsg: 'auth fails', ok: 0 }
任何援助将不胜感激。
检查这些...
auth = true
etc/mongod.conf
test
还要检查你的角色。
db.addUser( { user: "admin", pwd: "admin", roles: ["userAdminAnyDatabase"] } );
角色只userAdminAnyDatabase允许用户管理。它只能对数据库管理员进行身份验证。
userAdminAnyDatabase