mongo官方提供了数据迁移的工具,首先检查是否安装这些工具。
检查安装目录是否有以下可执行文件,一般在bin目录
1.windows
2.linux
如果没有则到官网下载
https://www.mongodb.com/try/download/database-tools
选择对应的系统,下载下来,解压到bin目录或者其他目录
mongodump --help
查看帮助命令
-h,--host
:远程连接的数据库地址,默认连接本地Mongo数据库;
--port
:远程连接的数据库的端口,默认连接的远程端口27017;
-u,--username
:连接远程数据库的账号,如果设置数据库的认证,需要指定用户账号;
-p,--password
:连接数据库的账号对应的密码;
-d,--db
:连接的数据库;
-c,--collection
:代表连接数据库中的集合;
-o, --out
:导出的文件输出目录;
-q, --query
:查询条件;
-j,--numParallelCollections
:要并行转储的集合数(默认为4)
--gzip
:使用Gzip压缩存档;
--oplog
:使用oplog进行时间点快照;
--authenticationDatabase
:指定用户鉴定库
全库备份
mongodump -u -p --port 28020 --authenticationDatabase admin -o /tmp/backup
备份指定的库,test库
mongodump -u -p --port 28020 --authenticationDatabase admin -d test -o /tmp/backup
备份test库下的customer集合
mongodump -u -p --port 28020 --authenticationDatabase admin -d test -c customer -o /tmp/backup
压缩备份单库
mongodump -u -p --port 28020 --authenticationDatabase admin -d test -o /tmp/backup --gzip
压缩备份单集合
mongodump -u -p --port 28020 --authenticationDatabase admin -d test -c customer -o /tmp/backup --gzip
结合windows命令批量备份指定集合
20220701-20220709
for /l %i in (1 1 9) do mongodump -d gpsRealData -c gps_2022070%i
20220710-20220721
for /l %i in (10 1 21) do mongodump -d gpsRealData -c gps_202207%i
mongodump --help
查看帮助命令
-h,--host
:远程连接的数据库地址,默认连接本地Mongo数据库;
--port
:远程连接的数据库的端口,默认连接的远程端口27017;
-u,--username
:连接远程数据库的账号,如果设置数据库的认证,需要指定用户账号;
-p,--password
:连接数据库的账号对应的密码;
-d,--db
:代表连接的数据库;
-c,--collection
:连接数据库中的集合;
-o, --out
:导出的文件输出目录;
--dir
: <目录名称>输入目录
--drop
:导入前删除数据库中集合;
--gzip
:解压Gzip压缩存档还原;
--oplog
:重放oplog以基于时间点还原;
--oplogFile
:<文件名>指定重播oplog的oplog文件
--authenticationDatabase
:指定用户鉴定库
单库恢复
mongorestore -u -p --port 28018 --authenticationDatabase admin -d test /tmp/backup/test
/home/software/mongodb/tools/bin/mongorestore -d gpsRealData /home/software/mongodb/dump/gpsRealData
恢复test库下的customer集合
mongorestore -u -p --port 28018 --authenticationDatabase admin -d test -c customer /tmp/backup/test/customer.bson
–gzip参数实践恢复
mongorestore -u -p --port 28018 --authenticationDatabase admin --gzip /tmp/backup
参考
https://cloud.tencent.com/developer/article/2000614