码迷,mamicode.com
首页 > 数据库 > 详细

MongoDB 2.4、备份

时间:2020-01-29 23:31:14      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:name   director   directory   test   需要   语法   rect   mongo   mon   

2.4、备份

  • 语法
mongodump -h dbhost -d dbname -o dbdirectory
  • -h:服务器地址,也可以指定端口号
  • -d:需要备份的数据库名称
  • -o:备份的数据存放位置,此目录中存放着备份出来的数据
  • 例1
sudo mkdir test1bak
sudo mongodump -h 192.168.196.128:27017 -d test1 -o ~/Desktop/test1bak

恢复

  • 语法
mongorestore -h dbhost -d dbname --dir dbdirectory
  • -h:服务器地址
  • -d:需要恢复的数据库实例
  • --dir:备份数据所在位置
  • 例2
mongorestore -h 192.168.196.128:27017 -d test2 --dir ~/Desktop/test1bak/test1

MongoDB 2.4、备份

标签:name   director   directory   test   需要   语法   rect   mongo   mon   

原文地址:https://www.cnblogs.com/LiuYanYGZ/p/12241757.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!