command line authentication of mongo fails

前端 未结 4 1545
青春惊慌失措
青春惊慌失措 2020-12-25 10:37

I am running mongo 2.2.2 on osx.

When I do the following authentication is going fine:

$ mongo
>> use admin
>> db.auth(\"uname\", \"passw         


        
4条回答
  •  星月不相逢
    2020-12-25 11:09

    You have to user the --authenticationDatabase to indicate mongodb where to find the user you have created. For example:

    mongo admin -u uname -p 'password' --authenticationDatabase admin
    

提交回复
热议问题