mongoDB 导入导出备份数据库

 mongoDB  3.0以上 备份数据库

#导出数据库

/usr/local/mongodb/bin/mongodump -d test  -o  ./test


 #导入数据库

/usr/local/mongodb/bin/mongorestore -d test  ./test


mongoDB  3.0以下 备份数据库


#导出数据库
/usr/local/mongodb/bin/mongodump -d test  -o  ./test

 #导入数据库
/usr/local/mongodb/bin/mongorestore  -h 127.0.0.1:27017 -d test --directoryperdb ./test

猜你喜欢

转载自blog.csdn.net/moqidian/article/details/51227638