暗黑模式
备份和还原
路线数据库MongoDB
TIP
备份
bash
mongodump [--host xx.xx] --port=27017 -u=admin [-p=xxxxxx] --authenticationDatabase=admin [-d=biz] --gzip --archive=dump-2308161110.gz
1
还原
bash
mongorestore [--host xx.xx] --port=27017 -u=admin [-p=xxxxxx] --authenticationDatabase=admin --drop --gzip --archive=dump-2308161110.gz
1
DANGER
--drop
会清空备份文件里对应的数据库,所以最好备份一下原数据库--archive
后面要跟=
,否则会报错