-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[CBRD-25469] 운영환경에서 백업본을 기반으로 신규 DB명으로 복구하는 스크립트(restore_to_newdb.sh)추가 #5591
Conversation
|
(fd70432) commit을 보면 2개의 수정을 1개의 commit으로 하셨는데, 리뷰어와의 원할한 interaction을 위해서는 이를 2개의 commit으로 분리해서 하는게 좋을듯 합니다. 그러면 각 commit에 대한 수정 사항이 확 들어올듯요. 몰아서 하는 것 보다는 각 commit이 단일 주제의 수정을 다루었으면 합니다.
너무 사소한 것까지 예기해서 좀 그렇긴합니다만, 그냥 느끼는 거 comment 하니 판단은 알아서 하십시요. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me!
Congratulations on your successful 1st PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고하셨습니다.
머지하고 버그가 발견되면 수정하는 것으로 하시지요.
62e34b8
to
c48a031
Compare
http://jira.cubrid.org/browse/CBRD-25469
[Describe]
사용자 실수 및 시스템 오류로 인해 데이터 복구가 필요한 경우, "백업본"을 가지고 운영 중인 서버에 복구하기 위해서는 추가계정, 추가 엔진 설치등의 번거로운 작업이 선행되어야 한다. 이에 번거로운 선행 작업없이 CUBRID 설치된 계정(운영 계정)에서 백업본을 가지고 복구 후 신규 DB명으로 변경할 수 있는 스크립트를 제공한다.
[Usage]
restore_to_newdb.sh : rename the database name after restoring the database
usage : sh restore_to_newdb.sh [OPTION] backuped-database-name new-database-name
OPTIONS:
-F path directory for new database (default: current directory)
-B path directory for backup volumes (default: current directory)
-d date restore to specific date (dd-mm-yyyy:hh:mm:ss or 'backuptime')
-l level backup level (0, 1, 2); default: 0 (full backup)
-p partial recovery if any log archive is absent
-k path path of key file (_keys) for tde (default: current)
EXAMPLES
restore_to_newdb.sh backupdb newdb
[Test Scenario]
[Request]
코드 리뷰 및 다른 case의 테스트가 필요하다면 리뷰 요청 드립니다.