반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- mysql
- rocky9
- FCM
- Push
- config
- Next.js
- SpringBoot
- git
- submit
- popup
- NextJS
- MSsql
- jquery
- pwa
- security
- yona
- ajax
- Eclipse
- nodejs
- spring3
- PM2
- Java
- Maven
- docker
- jenkins
- mybatis
- centos7
- node.js
- javascript
- MariaDB
Archives
- Today
- Total
ふたりで
docker+mongodb+mongodump+mongorestore 본문
728x90
반응형
SMALL
#환경.
- docker-desktop (windows)
- mongodb
# 먼저 백업데이터가 저장될 DB서버에서 아래와 같이 원격의 DB를 백업하자.
mongodump --host xxx.xxx.xxx.xxx --port 27017 -d testDB --username testuser --password testuser123 --out /opt/backup/mongodump
위 명령어를 실행하면 host에 명시한 ip의 DB에서 testuser계정으로 접속하여 testDB란 DB를 명령어를 실행하는 서버의 /opt/backup/mongodump경로에 testDB가 백업된다.
반응형
728x90
SMALL
# 백업한 DB를 복구시킬 때는 아래와 같이 restore 할 수 있다.
백업한 데이터가 백업용 mongoDB서버에 백업 되면 testDB명 그대로 DB 가 생성 된다.
# mongorestore --username root --password 1234 /opt/backup/mongodump/
참고자료:
https://www.mongodb.com/ko-kr/docs/database-tools/mongodump/
728x90
반응형
LIST
'docker' 카테고리의 다른 글
docker-desktop + mongodb compose (0) | 2025.01.06 |
---|---|
Create docker image and container by Dockerfile exampl (rock9(linux)+jdk8+tomcat8.5+spring3-web) (2) | 2024.07.30 |
Dockerfile build by Node.js Simple Project (0) | 2024.07.24 |
centos7+docker+MSSQL setup & config Ing~ (0) | 2022.09.08 |
centos7+docker+linux+mariadb setup&config (4) | 2022.08.25 |
Comments