반응형

mongodump & mongorestore

  • 가장 흔하게 사용하는 백업/복구 방법
  • 데이터베이스, 컬렉션, 전체 데이터 단위로 백업 가능
  • BSON 형태로 저장되어 백업/보구가 빠름
# 백업
mongodump --host localhost:10000

# 복구
mongorestore --host localhost:10000 ./dump/

mongoexport & mongoimport

  • 백업시 json, csv 형태로 백업 가능
  • mongodump, mongorestore보다 느림
# 백업
mongoexport \
--host localhost:10000 \
--db test \
--collection things \
--type json \
--out /home/ubuntu/test.json

# 복구
mongoimport \
--host localhost:10000 \
--db test \
--collection things \
--type json \
--file /home/ubuntu/test.json
반응형

'Development > MongoDB' 카테고리의 다른 글

[MongoDB] Spring 연동  (0) 2020.12.29
[MongoDB] NodeJS 연동  (0) 2020.12.29
[MongoDB] Replica Set 구성하기  (0) 2020.12.29
[MongoDB] Query  (0) 2020.12.29
[MongoDB] 설치하기  (0) 2020.12.29

+ Recent posts