mongodb数据库维护离不开必要的备份、恢复操作,而且一般不会出错,所以我们在使用的时候大部分时候使用备份和恢复操作就可以了
 
mongodump.exe备份的原理是通过一次查询获取当前服务器快照,并将快照写入磁盘中,因此这种方式保存的也不是实时的,因为在获取快照后,服务器还会有数据写入,为了保证备份的安全,同样我们还是可以利用fsync锁使服务器数据暂时写入缓存中。

高效开源数据库(mongodb)下载地址:http://www.jb51.net/softs/41751.html

备份前的检查
> show dbs
MyDB 0.0625GB
admin
(empty)
bruce 0.0625GB
local (empty)
test 0.0625GB
> use
MyDB
switched to db MyDB
> db.users.find()
{ "_id" :
ObjectId("4e290aa39a1945747b28f1ee"), "a" : 1, "b" : 1 }
{ "_id" :
ObjectId("4e2cd2182a65c81f21566318"), "a" : 3, "b" : 5 }
>

整库备份:
mongodump -h dbhost -d dbname -o
dbdirectory
-h:MongDB所在服务器地址,例如:127.0.0.1,当然也可以指定端口号:127.0.0.1:27017
-d:需要备份的数据库实例,例如:test
-o:备份的数据存放位置,例如:c:\data\dump,当然该目录需要提前建立,在备份完成后,系统自动在dump目录下建立一个test目录,这个目录里面存放该数据库实例的备份数据。

  1. mongodump的官方说明(可通过mongodump --help查看):
  2. options:
  3. --help produce help message
  4. -v [ --verbose ] be more verbose (include multiple times for more
  5. verbosity e.g. -vvvvv)
  6. --version print the program's version and exit
  7. -h [ --host ] arg mongo host to connect to ( /s1,s2 for
  8. sets)
  9. --port arg server port. Can also use --host hostname:port
  10. --ipv6 enable IPv6 support (disabled by default)
  11. -u [ --username ] arg username
  12. -p [ --password ] arg password
  13. --dbpath arg directly access mongod database files in the given
  14. path, instead of connecting to a mongod server -
  15. needs to lock the data directory, so cannot be used
  16. if a mongod is currently accessing the same path
  17. --directoryperdb if dbpath specified, each db is in a separate
  18. directory
  19. --journal enable journaling
  20. -d [ --db ] arg database to use
  21. -c [ --collection ] arg collection to use (some commands)
  22. -o [ --out ] arg (=dump) output directory or "-" for stdout
  23. -q [ --query ] arg json query
  24. --oplog Use oplog for point-in-time snapshotting
  25. --repair try to recover a crashed database
  26. --forceTableScan force a table scan (do not use $snapshot)

整库恢复:
mongorestore -h dbhost -d dbname –directoryperdb
dbdirectory
-h:MongoDB所在服务器地址
-d:需要恢复的数据库实例,例如:test,当然这个名称也可以和备份时候的不一样,比如test2
–directoryperdb:备份数据所在位置,例如:c:\data\dump\test,这里为什么要多加一个test,而不是备份时候的dump,读者自己查看提示吧!
–drop:恢复的时候,先删除当前数据,然后恢复备份的数据。就是说,恢复后,备份后添加修改的数据都会被删除,慎用哦!

  1. mongorestore的官方说明(可通过mongorestore --help查看):
  2. options:
  3. --help produce help message
  4. -v [ --verbose ] be more verbose (include multiple times for more
  5. verbosity e.g. -vvvvv)
  6. --version print the program's version and exit
  7. -h [ --host ] arg mongo host to connect to ( /s1,s2 for sets)
  8. --port arg server port. Can also use --host hostname:port
  9. --ipv6 enable IPv6 support (disabled by default)
  10. -u [ --username ] arg username
  11. -p [ --password ] arg password
  12. --dbpath arg directly access mongod database files in the given
  13. path, instead of connecting to a mongod server -
  14. needs to lock the data directory, so cannot be used
  15. if a mongod is currently accessing the same path
  16. --directoryperdb if dbpath specified, each db is in a separate
  17. directory
  18. --journal enable journaling
  19. -d [ --db ] arg database to use
  20. -c [ --collection ] arg collection to use (some commands)
  21. --objcheck validate object before inserting
  22. --filter arg filter to apply before inserting
  23. --drop drop each collection before import
  24. --oplogReplay replay oplog for point-in-time restore
  25. --oplogLimit arg exclude oplog entries newer than provided timestamp
  26. (epoch[:ordinal])
  27. --keepIndexVersion don't upgrade indexes to newest version
  28. --noOptionsRestore don't restore collection options
  29. --noIndexRestore don't restore indexes
  30. --w arg (=1) minimum number of replicas per write

单个collection备份:
mongoexport -h dbhost -d dbname -c
collectionname -f collectionKey -o dbdirectory
-h: MongoDB所在服务器地址
-d:
需要恢复的数据库实例
-c: 需要恢复的集合
-f: 需要导出的字段(省略为所有字段)
-o: 表示导出的文件名

  1. mongoexport的官方说明(可通过mongoexport --help查看):
  2. --help produce help message
  3. -v [ --verbose ] be more verbose (include multiple times for more
  4. verbosity e.g. -vvvvv)
  5. --version print the program's version and exit
  6. -h [ --host ] arg mongo host to connect to ( /s1,s2 for
  7. sets)
  8. --port arg server port. Can also use --host hostname:port
  9. --ipv6 enable IPv6 support (disabled by default)
  10. -u [ --username ] arg username
  11. -p [ --password ] arg password
  12. --dbpath arg directly access mongod database files in the given
  13. path, instead of connecting to a mongod server -
  14. needs to lock the data directory, so cannot be used
  15. if a mongod is currently accessing the same path
  16. --directoryperdb if dbpath specified, each db is in a separate
  17. directory
  18. --journal enable journaling
  19. -d [ --db ] arg database to use
  20. -c [ --collection ] arg collection to use (some commands)
  21. -f [ --fields ] arg comma separated list of field names e.g. -f
  22. name,age
  23. --fieldFile arg file with fields names - 1 per line
  24. -q [ --query ] arg query filter, as a JSON string
  25. --csv export to csv instead of json
  26. -o [ --out ] arg output file; if not specified, stdout is used
  27. --jsonArray output to a json array rather than one object per
  28. line
  29. -k [ --slaveOk ] arg (=1) use secondaries for export if available, default
  30. true
  31. --forceTableScan force a table scan (do not use $snapshot)

单个collection恢复:
mongoimport -d dbhost -c collectionname
–type csv –headerline –file
-type: 指明要导入的文件格式
-headerline:
批明不导入第一行,因为第一行是列名
-file: 指明要导入的文件路径

  1. mongoimport的官方说明(可通过mongoimport --help查看):
  2. --help produce help message
  3. -v [ --verbose ] be more verbose (include multiple times for more
  4. verbosity e.g. -vvvvv)
  5. --version print the program's version and exit
  6. -h [ --host ] arg mongo host to connect to ( /s1,s2 for sets)
  7. --port arg server port. Can also use --host hostname:port
  8. --ipv6 enable IPv6 support (disabled by default)
  9. -u [ --username ] arg username
  10. -p [ --password ] arg password
  11. --dbpath arg directly access mongod database files in the given
  12. path, instead of connecting to a mongod server -
  13. needs to lock the data directory, so cannot be used
  14. if a mongod is currently accessing the same path
  15. --directoryperdb if dbpath specified, each db is in a separate
  16. directory
  17. --journal enable journaling
  18. -d [ --db ] arg database to use
  19. -c [ --collection ] arg collection to use (some commands)
  20. -f [ --fields ] arg comma separated list of field names e.g. -f name,age
  21. --fieldFile arg file with fields names - 1 per line
  22. --ignoreBlanks if given, empty fields in csv and tsv will be ignored
  23. --type arg type of file to import. default: json (json,csv,tsv)
  24. --file arg file to import from; if not specified stdin is used
  25. --drop drop collection first
  26. --headerline CSV,TSV only - use first line as headers
  27. --upsert insert or update objects that already exist
  28. --upsertFields arg comma-separated fields for the query part of the
  29. upsert. You should make sure this is indexed
  30. --stopOnError stop importing at first error rather than continuing
  31. --jsonArray load a json array, not one item per line. Currently
  32. limited to 16MB.

其他导入与导出操作:

1. mongoimport -d my_mongodb -c user user.dat

参数说明:

-d 指明使用的库,
本例中为” my_mongodb”

-c 指明要导出的表, 本例中为”user”

可以看到导入数据的时候会隐式创建表结构

2. mongoexport -d my_mongodb -c user -o user.dat

参数说明:

-d
指明使用的库, 本例中为” my_mongodb”

-c 指明要导出的表, 本例中为”user”

-o 指明要导出的文件名,
本例中为”user.dat”

从上面可以看到导出的方式使用的是JSON 的样式.

MongoDB整库备份与还原以及单个collection备份、恢复方法的更多相关文章

  1. MongoDB整库备份与还原以及单个collection备份、恢复

    备份前的检查> show dbsMyDB 0.0625GBadmin (empty)bruce 0.0625GBlocal (empty)test 0.0625GB> use MyDBsw ...

  2. MongoDB整库备份+整库导入

    备份前检查: [root@Load29 tmp]# mongo localhost: MongoDB shell version: connecting to: localhost:/test Ser ...

  3. (2.10)备份与还原--利用T-SQL进行备份还原

    常用: /************ 一.数据库备份 ************/ with init,format,stats=1init:覆盖format:格式化备份集stats=1:显示进度条 ST ...

  4. MongoDB之整库备份还原单表collection备份还原

    MongoDB之整库备份还原单表collection备份还原 cd D:\MongoDB\bin 1整库备份: mongodump -h dbhost -d dbname -o dbdirectory ...

  5. 瞧一瞧!这儿实现了MongoDB的增量备份与还原(含部署代码)

    一 需求描述 我们知道数据是公司的重要资产,业务的系统化.信息化就是数字化.数据高效的存储与查询是系统完善和优化的方向,而数据库的稳定性.可靠性是实现的基础.高可用和RPO(RecoveryPoint ...

  6. PCB MongoDB数据库 备份与还原

    一. MongoDB数据库 备份与还原工具介绍: 数据备份工具  mongodump.exe 数据还原工具   mongorestore.exe 二. MongoDB数据库备份 mongodump - ...

  7. 【Mongodb】数据库备份与还原

    Mongodb 备份与还原 Mongodb 备份与还原 文件快照 快照备份 快照直接还原 从压缩文件还原 复制文件 备份文件 从文件还原 mongodump mongodump备份 mongodump ...

  8. MySQL(四)数据备份与还原

    数据备份与还原: 备份:将当前已有的数据或者记录保留 还原:将已经保留的数据恢复到对应的表中 为什么要做备份还原: 1.防止数据丢失:被盗.误操作 2.保护数据的记录 数据备份还原的方式很多:数据表备 ...

  9. mysql数据库-备份与还原实操

    目录 备份工具 1 基于 LVM 的快照备份(几乎热备) 2 数据库冷备份和还原 3 mysqldump备份工具 3.1 实战备份策略 3.1.1 全备份 3.1.2 分库分表备份 3.2 mysql ...

随机推荐

  1. DuiLib学习bug整理——某些png不能显示

    今天下午遇到用ps导出的png显示不出来的情况.而从其他来源的png有的可以显示.到群里问了下也有人遇到过,但是都没想明白具体原因.后来经人指点说png保存时存在深度位不同.最后经过测试 8位深度.3 ...

  2. NET基础(2):类型转换

    CLR最重要的特性之一就是类型安全的.在运行时,CLR总是知道对象的类型是什么.调用GetType()方法可以知道对象的确切类型,由于它是非虚方法,所以一个类型不可能伪装成另一种类型.每种编程语言都规 ...

  3. Oracle权限和数据类型

    oracle创建用户: CREATE USER 用户名 IDENTIFIED BY 口令 [ACCOUNT LOCK|UNLOCK] [注]LOCK|UNLOCK创建用户时是否锁定,默认为锁定状态.锁 ...

  4. Java 之 List<T> 接口的实现:LinkedList

    Collection├List│├LinkedList│├ArrayList│└Vector│ └Stack└SetMap├Hashtable├HashMap└WeakHashMap 隶属于队列Lis ...

  5. 从NSGA到 NSGA II

    NSGA(非支配排序遗传算法).NSGAII(带精英策略的非支配排序的遗传算法),都是基于遗传算法的多目标优化算法,都是基于pareto最优解讨论的多目标优化,遗传算法已经做过笔记,下面介绍paret ...

  6. An internal error occurred during: "Building workspace".

    当在eclipse中的web工程中增加了extjs4,出现An internal error occurred during: "Building workspace". Java ...

  7. enbale blakboxing

    chrome://flags/#enable-devtools-experiments

  8. UNIX网络编程学习指南--epoll函数

    epoll是select/poll的强化版,都是多路复用的函数,epoll有了很大的改进. epoll的功能 1.支持监听大数目的socket描述符 一个进程内,select能打开的fd是有限制的,有 ...

  9. C#委托,事件最初浅的和最易看懂的学习笔记

    对于委托和事件,看了不少博文,当时好像都理解了,过了一段时间,又忘记的差不多了.每每如此,感觉自己很笨,记性差,其实是没有深入理解透切,没有按照自己的语言表达出来,当然容易忘记.今天又花了一些时间,好 ...

  10. Python基础第三篇

    一.collections系列 Counter是对字典类型的补充,用于追踪值的出现次数,具备字典的所有功能 + 自己的功能 1.计数器Counter import collections a='aba ...