What does authSource means in mongo database url?

前端 未结 2 1350
清酒与你
清酒与你 2021-01-01 19:21

i am trying to connect to my mongo database with following connection string

var Mongo_url = \'mongodb://MyUSer:tech@localhost:27017/chatme?authSource=admin\         


        
2条回答
  •  爱一瞬间的悲伤
    2021-01-01 19:52

    This is the name of the database that has the collection with the user credentials.

    https://docs.mongodb.com/manual/reference/connection-string/#connections-connection-options

    This is where the usernames and passwords are set up.

提交回复
热议问题