备份数据库
./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 数据库名称
一定要注意,恢复时,没有' 号,否则会失败,坑。
标签:Mongdb,--,备份,xxx,port,0.1,名称,数据库,亲测 From: https://blog.51cto.com/u_14906615/5899427