mongodb 备份恢复

备份数据库
./mongodump -d edxapp
[root@HuanCun3 dump]# cd edxapp/
[root@HuanCun3 edxapp]# ls
calendar.bson           fs.chunks.bson           fs.files.bson           modulestore.bson               modulestore.location_map.metadata.json  system.indexes.bson
calendar.metadata.json  fs.chunks.metadata.json  fs.files.metadata.json  modulestore.location_map.bson  modulestore.metadata.json

恢复数据库
./mongorestore -d edxapp dump/

导出数据
./mongoexport -d edxapp -c modulestore -o modulestore.dat
cat modulestore.dat

导入数据
./mongoimport -d edxapp -c modulestore -o modulestore.dat

猜你喜欢

转载自amspring.iteye.com/blog/2160379