Can't create backup mongodump with --db. Authentication failed

后端 未结 14 1014
深忆病人
深忆病人 2020-12-29 18:22

When I create backup of all databases in MongoDB (version 3):

mongodump --username bacUser --password 12345

It\'s OK. But when I try to cre

14条回答
  •  一个人的身影
    2020-12-29 18:50

    for dump and restore

    mongodump --db nameDatabase --username userName --password password --authenticationDatabase admin --out mongodb\
    mongorestore --db nameDatabase --username userName --password password --authenticationDatabase admin  --drop
    

提交回复
热议问题