MongoDB数据库备份和恢复方法

分别用到mongodumpmongostore命令

备份数据库

mongodump -h sample.mongodbhost.com:27017 -d DATABASE_NAME -u USER_NAME -p SAMPLE_PASSWORD -o ~/Desktop

注:~//root目录

恢复数据库

mongorestore --host sample.mongohost.com --port 27017 --username USER_NAME --password SAMPLE_PASSWORD --db DATABASE_NAME .

注:最后的点.是当前目录的意思,最后一个参数为指定数据库备份目录。

Post Comment