首页 > 代码库 > mongoDB数据库备份
mongoDB数据库备份
mongodump -h dbhost -d dbname -o dbdirectory 备份mongoDB数据库
重新打开 dos命令框
mongodump -h 127.0.0.1:27017 -d test -o c:/test 备份数据库 test到 c:/test 备份的是bson格式,二进制json
use test ; 进入数据库test
db.dropDatabase(); 删除数据库
恢复数据库文件
mongorestore -h dbhost -d dbname -directoryperdb dbdirectory
mongorestore -h 127.0.0.1:27017 -d test -directoryperdb c:/test
导出 导入 是纯文本文件
导出
mongoexport -h dbhost -d dbname -c collectionName -o output
mongoexport -h localhost:27017 -d test -c person -o e:\test\bak
把文件数据导入数据库中的集合
mongoimport -h localhost:27017 -d test -c person -o e:\test\bak
mongoDB数据库备份
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。