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

本文涉及的产品
云数据库 MongoDB,独享型 2核8GB
推荐场景:
构建全方位客户视图
简介:

备份前的检查

> 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目录,这个目录里面存放该数据库实例的备份数据。

mongodump的官方说明(可通过mongodump --help查看):

options:

 --help          produce help message

 -v [ --verbose ]     be more verbose (include multiple times for more

              verbosity e.g. -vvvvv)

 --version        print the program's version and exit

 -h [ --host ] arg    mongo host to connect to ( /s1,s2 for

              sets)

 --port arg        server port. Can also use --host hostname:port

 --ipv6          enable IPv6 support (disabled by default)

 -u [ --username ] arg  username

 -p [ --password ] arg  password

 --dbpath arg       directly access mongod database files in the given

              path, instead of connecting to a mongod server -

              needs to lock the data directory, so cannot be used

              if a mongod is currently accessing the same path

 --directoryperdb     if dbpath specified, each db is in a separate

              directory

 --journal        enable journaling

 -d [ --db ] arg     database to use

 -c [ --collection ] arg collection to use (some commands)

 -o [ --out ] arg (=dump) output directory or "-" for stdout

 -q [ --query ] arg    json query

 --oplog         Use oplog for point-in-time snapshotting

 --repair         try to recover a crashed database

 --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:恢复的时候,先删除当前数据,然后恢复备份的数据。就是说,恢复后,备份后添加修改的数据都会被删除,慎用哦!

mongorestore的官方说明(可通过mongorestore --help查看):

options:

 --help         produce help message

 -v [ --verbose ]    be more verbose (include multiple times for more

             verbosity e.g. -vvvvv)

 --version        print the program's version and exit

 -h [ --host ] arg    mongo host to connect to ( /s1,s2 for sets)

 --port arg       server port. Can also use --host hostname:port

 --ipv6         enable IPv6 support (disabled by default)

 -u [ --username ] arg  username

 -p [ --password ] arg  password

 --dbpath arg      directly access mongod database files in the given

             path, instead of connecting to a mongod server -

             needs to lock the data directory, so cannot be used

             if a mongod is currently accessing the same path

 --directoryperdb    if dbpath specified, each db is in a separate

             directory

 --journal        enable journaling

 -d [ --db ] arg     database to use

 -c [ --collection ] arg collection to use (some commands)

 --objcheck       validate object before inserting

 --filter arg      filter to apply before inserting

 --drop         drop each collection before import

 --oplogReplay      replay oplog for point-in-time restore

 --oplogLimit arg    exclude oplog entries newer than provided timestamp

             (epoch[:ordinal])

 --keepIndexVersion   don't upgrade indexes to newest version

 --noOptionsRestore   don't restore collection options

 --noIndexRestore    don't restore indexes

 --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: 表示导出的文件名

mongoexport的官方说明(可通过mongoexport --help查看):

 --help          produce help message

 -v [ --verbose ]     be more verbose (include multiple times for more

              verbosity e.g. -vvvvv)

 --version         print the program's version and exit

 -h [ --host ] arg     mongo host to connect to ( /s1,s2 for

              sets)

 --port arg        server port. Can also use --host hostname:port

 --ipv6          enable IPv6 support (disabled by default)

 -u [ --username ] arg   username

 -p [ --password ] arg   password

 --dbpath arg       directly access mongod database files in the given

              path, instead of connecting to a mongod server -

              needs to lock the data directory, so cannot be used

              if a mongod is currently accessing the same path

 --directoryperdb     if dbpath specified, each db is in a separate

              directory

 --journal         enable journaling

 -d [ --db ] arg      database to use

 -c [ --collection ] arg  collection to use (some commands)

 -f [ --fields ] arg    comma separated list of field names e.g. -f

              name,age

 --fieldFile arg      file with fields names - 1 per line

 -q [ --query ] arg    query filter, as a JSON string

 --csv           export to csv instead of json

 -o [ --out ] arg     output file; if not specified, stdout is used

 --jsonArray        output to a json array rather than one object per

              line

 -k [ --slaveOk ] arg (=1) use secondaries for export if available, default

              true

 --forceTableScan     force a table scan (do not use $snapshot)

单个collection恢复

mongoimport -d dbhost -c collectionname –type csv –headerline –file

-type: 指明要导入的文件格式

-headerline: 批明不导入第一行,因为第一行是列名

-file: 指明要导入的文件路径

mongoimport的官方说明(可通过mongoimport --help查看):

 --help         produce help message

 -v [ --verbose ]    be more verbose (include multiple times for more

             verbosity e.g. -vvvvv)

 --version        print the program's version and exit

 -h [ --host ] arg    mongo host to connect to ( /s1,s2 for sets)

 --port arg       server port. Can also use --host hostname:port

 --ipv6         enable IPv6 support (disabled by default)

 -u [ --username ] arg  username

 -p [ --password ] arg  password

 --dbpath arg      directly access mongod database files in the given

             path, instead of connecting to a mongod server -

             needs to lock the data directory, so cannot be used

             if a mongod is currently accessing the same path

 --directoryperdb    if dbpath specified, each db is in a separate

             directory

 --journal        enable journaling

 -d [ --db ] arg     database to use

 -c [ --collection ] arg collection to use (some commands)

 -f [ --fields ] arg   comma separated list of field names e.g. -f name,age

 --fieldFile arg     file with fields names - 1 per line

 --ignoreBlanks     if given, empty fields in csv and tsv will be ignored

 --type arg       type of file to import. default: json (json,csv,tsv)

 --file arg       file to import from; if not specified stdin is used

 --drop         drop collection first

 --headerline      CSV,TSV only - use first line as headers

 --upsert        insert or update objects that already exist

 --upsertFields arg   comma-separated fields for the query part of the

             upsert. You should make sure this is indexed

 --stopOnError      stop importing at first error rather than continuing

 --jsonArray       load a json array, not one item per line. Currently

             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 的样式.





     本文转自aaron428 51CTO博客,原文链接:http://blog.51cto.com/aaronsa/1728259,如需转载请自行联系原作者


相关实践学习
MongoDB数据库入门
MongoDB数据库入门实验。
快速掌握 MongoDB 数据库
本课程主要讲解MongoDB数据库的基本知识,包括MongoDB数据库的安装、配置、服务的启动、数据的CRUD操作函数使用、MongoDB索引的使用(唯一索引、地理索引、过期索引、全文索引等)、MapReduce操作实现、用户管理、Java对MongoDB的操作支持(基于2.x驱动与3.x驱动的完全讲解)。 通过学习此课程,读者将具备MongoDB数据库的开发能力,并且能够使用MongoDB进行项目开发。   相关的阿里云产品:云数据库 MongoDB版 云数据库MongoDB版支持ReplicaSet和Sharding两种部署架构,具备安全审计,时间点备份等多项企业能力。在互联网、物联网、游戏、金融等领域被广泛采用。 云数据库MongoDB版(ApsaraDB for MongoDB)完全兼容MongoDB协议,基于飞天分布式系统和高可靠存储引擎,提供多节点高可用架构、弹性扩容、容灾、备份回滚、性能优化等解决方案。 产品详情: https://www.aliyun.com/product/mongodb
相关文章
|
4月前
|
NoSQL MongoDB 数据库
MongoDB备份与恢复总结
MongoDB备份与恢复总结
157 0
|
2月前
|
NoSQL Java MongoDB
MongoDB Limit 与 Skip 方法
10月更文挑战第16天
39 3
|
2月前
|
NoSQL MongoDB 数据库
|
6月前
|
NoSQL MongoDB 数据库
MongoDB 分页神器:limit() 和 skip() 方法详解
MongoDB 分页神器:limit() 和 skip() 方法详解
113 1
|
2月前
|
NoSQL MongoDB 数据库
MongoDB 删除数据库
10月更文挑战第13天
50 0
|
4月前
|
NoSQL 网络安全 MongoDB
MongoDB 备份与恢复
MongoDB 中的数据备份和恢复主要依赖于 `mongodump` 和 `mongorestore` 两个命令。`mongodump` 用于备份数据,它可以将数据导出为 BSON 格式的文件,支持多种部署类型,包括独立运行部署、副本集、分片集群等。通过指定不同的参数,如 `--uri`、`--host`、`--port` 等,可以连接到不同的 MongoDB 实例。备份时还可以指定要备份的数据库、集合等。
50 1
|
4月前
|
NoSQL Ubuntu MongoDB
在Ubuntu 16.04上安装和保护MongoDB的方法
在Ubuntu 16.04上安装和保护MongoDB的方法
37 1
|
4月前
|
NoSQL MongoDB
阿里云 MongoDB 创建库添加用户并授权
阿里云 MongoDB 创建库添加用户并授权
53 0
|
7月前
|
存储 NoSQL 安全
【MongoDB 专栏】MongoDB 的备份与恢复策略
【5月更文挑战第11天】MongoDB的备份与恢复至关重要,确保数据安全、完整和可用。数据库提供文件级和逻辑备份,前者简单直接但可能需短暂停机,后者灵活可选特定数据。备份策略要考虑频率和存储位置,恢复时要验证数据完整性,选择合适恢复点。增量和差异备份可提升效率,监控管理备份是必要环节。案例显示,有效策略能降低意外损失。随着技术发展,应持续优化策略,强化人员培训,以责任和使命对待备份恢复,保障企业数据环境的安全稳定。
104 1
【MongoDB 专栏】MongoDB 的备份与恢复策略
|
6月前
|
NoSQL 安全 MongoDB
精准数据清理:掌握 MongoDB 删除集合的方法与最佳实践
精准数据清理:掌握 MongoDB 删除集合的方法与最佳实践
223 0