当前位置:   article > 正文

Mongodb入门--头歌实验MongoDB 实验——数据备份和恢复

mongodb 实验——数据备份和恢复

在实际的应用场景中,经常需要对业务数据进行备份以做容灾准备, MongoDB 提供了备份和恢复的功能,分别是 MongoDB 下的

一、数据备份

任务描述

本关任务:按照编程要求备份数据库。

相关知识

为了完成本关任务,你需要掌握: 1.掌握 mongodump 备份工具的参数含义; 2.如何使用 mongodump 备份数据。

mongodump 备份工具

mongodump 的参数与 mongoexport(数据导出)的参数基本一致:

参数参数说明
-h指明数据库宿主机的IP
-u指明数据库的用户名
-p指明数据库的密码
-d指明数据库的名字
-c指明collection的名字
-o指明到要导出的文件名
-q指明导出数据的过滤条件
--authenticationDatabase验证数据的名称
--gzip备份时压缩
--oploguse oplog for taking a point-in-time snapshot
使用 mongodump 备份数据

备份工具同导入导出工具类似,都是在命令行进行操作,无需进入客户端。

  • 全库备份(如果数据库未设置用户和密码,可以省略 -uroot -proot 参数)

  1. mongodump -h 127.0.0.1:27300 -uroot -proot --authenticationDatabase admin -o /home/mongod
  2. #备份本地27300端口中root用户的所有数据库到/home/mongod目录下
  • 单个数据库备份
  1. mongodump -h 127.0.0.1:27300 -uroot -proot --authenticationDatabase admin -d test -o /home/mongod/test
  2. #备份本地27300端口中root用户的test数据库到/home/mongod/test目录下
  • 集合备份

    1. mongodump -h 127.0.0.1:27300 -uroot -proot --authenticationDatabase admin -d test -c haha -o /home/mongod/test/haha
    2. #备份27300端口中root用户的test数据库的haha集合到/home/mongod/test/haha目录下
  • 压缩备份库

  1. mongodump -h 127.0.0.1:27300 -uroot -proot --authenticationDatabase admin -d test -o /home/mongod/test1 --gzip
  2. #压缩备份本地27300端口中root用户的test数据库到/home/mongod/test1目录下
  • 压缩备份集合

    1. mongodump -h 127.0.0.1:27300 -uroot -proot --authenticationDatabase admin -d test -c haha -o /home/mongod/test1/haha --gzip
    2. #压缩备份27300端口中root用户的test数据库的haha集合到/home/mongod/test1/haha目录下
编程要求

根据提示,在右侧命令行进行操作(以下均在默认端口为27017的客户端进行,无用户和密码;以下**/opt下的路径均不存在,需要自己先行创建**):

  • 分别将 /home/example 目录下的 person.json 和 student.csv 导入到 MongoDB 的 test1 数据库的 person 集合、test2 数据库的 student 集合;

  • 将所有数据库备份到 /opt/mongodb 目录下;

  • 将 test1 数据库备份到 /opt/mongodb_1 目录下;

  • 将 person 集合备份到 /opt/collection_1 目录下;

  • 将 student 集合压缩备份到 /opt/collection_2 目录下;

  • 将 test2 数据库压缩备份到 /opt/mongodb_2 目录下。

1.创建以上目录

  1. root@evassh-13661150:~# mkdir /opt/mongodb
  2. root@evassh-13661150:~# mkdir /opt/mongodb_1
  3. root@evassh-13661150:~# mkdir /opt/mongodb_2
  4. root@evassh-13661150:~# mkdir /opt/collection_1
  5. root@evassh-13661150:~# mkdir /opt/collection_2

2. 分别将 /home/example 目录下的 person.json 和 student.csv 导入到 MongoDB 的 test1 数据库的 person 集合、test2 数据库的 student 集合;

  1. root@evassh-13661150:~# mongoimport -d test1 -c person --type json --file /home/example/person.json
  2. 2022-12-18T15:32:43.037+0000 connected to: localhost
  3. 2022-12-18T15:32:43.052+0000 imported 8 documents
  4. root@evassh-13661150:~# mongoimport -d test2 -c student --type csv --headerline --ignoreBlanks --file /home/example/student.csv
  5. 2022-12-18T15:33:36.403+0000 connected to: localhost
  6. 2022-12-18T15:33:36.416+0000 imported 8 documents

mongoimport -d test1 -c person --type json --file /home/example/person.json

mongoimport -d test2 -c student --type csv --headerline --ignoreBlanks --file /home/example/student.csv

3.其他五步(按顺序)

  1. root@evassh-13661150:~# mongodump -h 127.0.0.1:27017 --authenticationDatabase admin -o /opt/mongodb
  2. 2022-12-18T15:35:24.521+0000 writing admin.system.version to
  3. 2022-12-18T15:35:24.522+0000 done dumping admin.system.version (1 document)
  4. 2022-12-18T15:35:24.522+0000 writing test1.person to
  5. 2022-12-18T15:35:24.522+0000 writing test2.student to
  6. 2022-12-18T15:35:24.523+0000 done dumping test1.person (8 documents)
  7. 2022-12-18T15:35:24.523+0000 done dumping test2.student (8 documents)
  8. root@evassh-13661150:~# mongodump -h 127.0.0.1:27017 --authenticationDatabase admin -d test1 -o /opt/mongodb_1
  9. 2022-12-18T15:36:20.989+0000 writing test1.person to
  10. 2022-12-18T15:36:20.989+0000 done dumping test1.person (8 documents)
  11. root@evassh-13661150:~# mongodump -h 127.0.0.1:27017 --authenticationDatabase admin -d test1 -c person -o /opt/collection_1
  12. 2022-12-18T15:37:27.552+0000 writing test1.person to
  13. 2022-12-18T15:37:27.553+0000 done dumping test1.person (8 documents)
  14. root@evassh-13661150:~# mongodump -h 127.0.0.1:27017 --authenticationDatabase admin -d test2 -c student -o /opt/collection_2 --gzip
  15. 2022-12-18T15:38:16.975+0000 writing test2.student to
  16. 2022-12-18T15:38:16.977+0000 done dumping test2.student (8 documents)
  17. root@evassh-13661150:~# mongodump -h 127.0.0.1:27017 --authenticationDatabase admin -d test2 -o /opt/mongodb_2 --gzip
  18. 2022-12-18T15:38:52.390+0000 writing test2.student to
  19. 2022-12-18T15:38:52.391+0000 done dumping test2.student (8 documents)

二、数据恢复

任务描述

本关任务:按照编程要求恢复数据。

相关知识

为了完成本关任务,你需要掌握: 1.掌握 mongorestore 恢复工具的参数含义; 2.如何使用 mongorestore 恢复数据。

  1. mongorestore 恢复工具
  2. 参数 参数说明
  3. -h 指明数据库宿主机的IP
  4. -u 指明数据库的用户名
  5. -p 指明数据库的密码
  6. -d 指明数据库的名字
  7. -c 指明collection的名字
  8. -o 指明到要导出的文件名
  9. -q 指明导出数据的过滤条件
  10. --authenticationDatabase 验证数据的名称
  11. --gzip 备份时压缩
  12. --oplog use oplog for taking a point-in-time snapshot
  13. --drop 恢复的时候把之前的集合drop掉
使用 mongorestore 恢复数据
  • 全库备份中恢复单库(基于之前的全库备份)

  1. mongorestore -h 127.0.0.1:27017 -uroot -proot --authenticationDatabase admin -d test --drop /home/mongod
  2. #从/home/mongod目录下恢复全部数据库的数据到本地27300端口中root用户中(基于第一关的备份,下同)
  • 恢复 test 库
  1. mongorestore -h 127.0.0.1:27017 -uroot -proot --authenticationDatabase admin -d test /home/mongod/test
  2. #从/home/mongod/test目录下恢复名为test的单个数据库的数据到本地27300端口中root用户中的test数据库
  • 恢复 test 库下的 haha 集合
  1. mongorestore -h 127.0.0.1:27017 -uroot -proot --authenticationDatabase admin -d test -c haha /home/mongod/test/haha/haha.bson
  2. #从/home/mongod/test/haha目录下恢复集合的数据到本地27300端口中root用户的test数据库的haha集合中

--drop 参数实践恢复

  1. # 恢复单库
  2. mongorestore -h 127.0.0.1:27017 -uroot -proot --authenticationDatabase admin -d test --drop /home/mongod/test
  3. # 恢复单表
  4. mongorestore -h 127.0.0.1:27017 -uroot -proot --authenticationDatabase admin -d test -c vast --drop /home/mongod/test/haha/haha.bson
编程要求

根据提示,在右侧命令行进行操作,将第一关备份的数据按以下要求恢复(以下均在默认端口为27017的客户端进行,无用户和密码):

  • 将 /opt/mongodb 目录下的数据恢复到 MongoDB 中;

  • 将 /opt/mongodb_1 目录下的数据恢复到 mytest1 数据库中;

  • 将 /opt/collection_1 目录下的数据恢复到 mytest2 数据库的 person 集合中;

  • 将 /opt/collection_2 目录下的数据恢复到 mytest3 数据库的 student 集合中,并删除之前备份的表;

  • 将 /opt/mongodb_2 目录下的数据恢复到 mytest4 的数据库中,并删除之前的备份的数据库。

  1. root@evassh-13661150:~# mongorestore -h 127.0.0.1:27017 --authenticationDatabase admin --drop /opt/mongodb
  2. 2022-12-18T15:48:05.720+0000 preparing collections to restore from
  3. 2022-12-18T15:48:05.788+0000 reading metadata for test1.person from /opt/mongodb/test1/person.metadata.json
  4. 2022-12-18T15:48:05.793+0000 reading metadata for test2.student from /opt/mongodb/test2/student.metadata.json
  5. 2022-12-18T15:48:05.815+0000 restoring test1.person from /opt/mongodb/test1/person.bson
  6. 2022-12-18T15:48:05.815+0000 restoring test2.student from /opt/mongodb/test2/student.bson
  7. 2022-12-18T15:48:05.818+0000 no indexes to restore
  8. 2022-12-18T15:48:05.818+0000 finished restoring test1.person (8 documents)
  9. 2022-12-18T15:48:05.818+0000 no indexes to restore
  10. 2022-12-18T15:48:05.818+0000 finished restoring test2.student (8 documents)
  11. 2022-12-18T15:48:05.818+0000 done
  12. root@evassh-13661150:~# mongorestore -h 127.0.0.1:27017 --authenticationDatabase admin -d mytest1 /opt/mongodb_1/test1
  13. 2022-12-18T15:48:36.693+0000 the --db and --collection args should only be used when restoring from a BSON file. Other uses are deprecated and will not exist in the future; use --nsInclude instead
  14. 2022-12-18T15:48:36.693+0000 building a list of collections to restore from /opt/mongodb_1/test1 dir
  15. 2022-12-18T15:48:36.694+0000 reading metadata for mytest1.person from /opt/mongodb_1/test1/person.metadata.json
  16. 2022-12-18T15:48:36.706+0000 restoring mytest1.person from /opt/mongodb_1/test1/person.bson
  17. 2022-12-18T15:48:36.708+0000 no indexes to restore
  18. 2022-12-18T15:48:36.708+0000 finished restoring mytest1.person (8 documents)
  19. 2022-12-18T15:48:36.708+0000 done
  20. root@evassh-13661150:~# mongorestore -h 127.0.0.1:27017 --authenticationDatabase admin -d mytest2 -c person /opt/collection_1/test1/person.bson
  21. 2022-12-18T15:48:45.065+0000 checking for collection data in /opt/collection_1/test1/person.bson
  22. 2022-12-18T15:48:45.065+0000 reading metadata for mytest2.person from /opt/collection_1/test1/person.metadata.json
  23. 2022-12-18T15:48:45.077+0000 restoring mytest2.person from /opt/collection_1/test1/person.bson
  24. 2022-12-18T15:48:45.140+0000 no indexes to restore
  25. 2022-12-18T15:48:45.140+0000 finished restoring mytest2.person (8 documents)
  26. 2022-12-18T15:48:45.140+0000 done
  27. root@evassh-13661150:~# mongorestore -h 127.0.0.1:27017 --authenticationDatabase admin -d mytest3 -c student --gzip --drop /opt/collection_2/test2/student.bson.gz
  28. 2022-12-18T15:48:52.830+0000 checking for collection data in /opt/collection_2/test2/student.bson.gz
  29. 2022-12-18T15:48:52.830+0000 reading metadata for mytest3.student from /opt/collection_2/test2/student.metadata.json.gz
  30. 2022-12-18T15:48:52.843+0000 restoring mytest3.student from /opt/collection_2/test2/student.bson.gz
  31. 2022-12-18T15:48:52.906+0000 no indexes to restore
  32. 2022-12-18T15:48:52.907+0000 finished restoring mytest3.student (8 documents)
  33. 2022-12-18T15:48:52.907+0000 done
  34. root@evassh-13661150:~# mongorestore -h 127.0.0.1:27017 --authenticationDatabase admin -d mytest4 --gzip --drop /opt/mongodb_2/test2/student.bson.gz
  35. 2022-12-18T15:49:00.810+0000 checking for collection data in /opt/mongodb_2/test2/student.bson.gz
  36. 2022-12-18T15:49:00.810+0000 reading metadata for mytest4.student from /opt/mongodb_2/test2/student.metadata.json.gz
  37. 2022-12-18T15:49:00.822+0000 restoring mytest4.student from /opt/mongodb_2/test2/student.bson.gz
  38. 2022-12-18T15:49:00.885+0000 no indexes to restore
  39. 2022-12-18T15:49:00.885+0000 finished restoring mytest4.student (8 documents)
  40. 2022-12-18T15:49:00.885+0000 done

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/668429
推荐阅读
相关标签
  

闽ICP备14008679号