备份数据库

./mongodump --host 127.0.0.1 --port 27318 -u 'xxx' -p 'xxx' -d 数据库名称 -o /root/backup/20200817 --authenticationDatabase 数据库名称

恢复数据库

mongorestore.exe --host 127.0.0.1 --port 27318 -u xxx -p xxx -d 数据库名称 --dir C:\IDE\tools\test\ --authenticationDatabase 数据库名称

一定要注意,恢复时,没有' 号,否则会失败,坑。