Background Image
기타
2015.06.19 01:40

콘솔에서 마이그레이션 하기.

조회 수 13427 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄 첨부


마이그레이션 마법사 5단계에서 저장한 마이그레이션 스크립트를 클릭하고 툴바에서 마이그레이션 스크립트 > 내보내기를 클릭하면 해당 스크립트를 XML 파일로 출력할 수 있으며 SSH를 이용해 원격 서버로 내보낼 수도 있다.

img_001.jpg

 

마이그레이션 스크립트 내보내기 대화 상자에서는 내 PC에 저장하거나 SSH 를 경유해 원격 서버에 저장 할 수 있다.

img_002.jpg

 

 

큐브리드 FTP 웹사이트의 CUBRID_Tools/CUBRID_Migration_Toolkit 디렉터리(http://ftp.cubrid.org/CUBRID_Tools/CUBRID_Migration_Toolkit)에서 다음과 같은 마이그레이션 툴킷 콘솔 버전을 다운로드 할 수 있다.

 

CUBRID-Migration-Toolkit-console-2014-build-4597-linux.tar.gz

CUBRID-Migration-Toolkit-console-2014-build-4597-windows.gz

 

압축을 푼 후 migration.sh를 실행한다.

 

$ sh ./migration.sh

Thank you for using CUBRID Migration Toolkit(CMT) Console.

 

Usage in windows: migration.bat <utility-name> [options]

Usage in linux: migration.sh <utility-name> [options]

 

Available <utility-name> (Default is “start”):

    Start: Start a migration task.

    Log: Review a migration work’s log.

    Report: Review amigration work’s result.

    Script: Build a migration script with online source and default options.

 

Please visit http://www.cubrid.org  for more information.

 

마이그레이션 명령(start) 외에 마이그레이션이 끝난 후 생성되는 로그(log)나 보고서(report)를 보는 명령도 제공한다.  Script 명령을 이용하면 원본 데이터베이스에 연결해 스키마 정보를 마이그레이션 스크립트에 포함한 후 원본 데이터베이스를 연결할 수 없는 곳에 있는 마이그레이션 툴킷  GUI에서 이 마이그레이션 스크립트를 열어 매핑 작업을 할 수 있다물론, 작업 후에 다시 큐브리드 마이그레이션 툴킷 콘솔로 업로드해서 서버에서 마이그레이션을 시작할 수 있다.

리눅스 터미널에서 마이그레이션 하기 위해 여기서는 start 명령을 이용한다.  sh ./migration.sh start를 실행해보자.

 

$ sh ./migration.sh start

Thank you for using CUBRID Migration Toolkit(CMT) Console.

Please specify the migration script file:

 

마이그레이션 스크립트 내보내기로 출력한 스크립트 파일 경로를 입력하면 다음과 같이 원본 데이터베이스에 연결해서 마이그레이션을 시작한다.

Please specify the migration script file: migration-demodb.xml

Reading <migration-demodb.xml>

Reading source database schema …

Migration started at 2014-07-20 18:02:28

100%

Migration is finished.

Migration Report summary:

Time used: 00 00:00:07.516

     table: Exported[11];  Imported[11]

     view: Exported[0];  Imported[0]

     primary key: Exported[10];  Imported[10]

     foreign key: Exported[4];  Imported[4]

     index:  Exported[0];  Imported[0]

     sequence: Exported[2];  Imported[2]

     trigger: Exported[0];  Imported[0]

     function: Exported[0];  Imported[0]

     procedure: Exported[0];  Imported[0]

     record: Exported[19202];  Imported[19202]

 

진행률이 100%가 되고 간략한 마이그레이션 종료 보고서가 출력된다물론 자동화를 위해 다음의 파라미터를 지정하면 사용자의 입력을 기다리지 않고 바로 마이그레이션이 시작되게 할 수 있다.

Usage in Windows: migration.bat start [options] [migration script file]

Usage in Linux: migration.sh start [options] [migration script file]

 

Available options:

-s,      Configuration Name of source in db.conf.

     -t,      Configuration Name of target in db.conf.

     -sd,     Full name of source database's JDBC driver file.

     -td,     Full name of target database's JDBC driver file.

     -tp,     Path to save exported files if the configuration is setting to export source DB to files.

     -xml,    MySQL XML dump file.

     -mm,     Monitor mode.  The value should be one of [error, info, debug]

     -rm,     Report mode.  The value should be one of [error, info, debug]

     -do,     CMT only migrates data.  The value should be one of [yes, no]

 

, 다음과 같이 실행하도록 옵션을 추가하면 별도 입력 없이 마이그레이션을 시작할 수 있기 때문에 crontab  등에 지정하고 주기적으로 마이그레이션 해야 하는 경우에 유용하다.

sh ./migration.sh start migration-demodb.xml

 

그런데 마이그레이션 툴킷 GUI에서 마이그레이션 스크립트를 작성하면  JDBC 드라이버의 경로가 실제 마이그레이션 콘솔이 동작하는 서버와 다를 수 있다이런 경우에는 –sd, -td 옵션을 이용해 JDBC 드라이버를 직접 지정할 수 있다.

sh ./migration.sh start migration-demodb.xml  -sd  jdbc/ojdbc6.jar  -td  jdbc/JDBC-9.3.0.026-cubrid.jar

 

마이그레이션 완료 후 보고서를 보려면 {큐브리드 마이그레이션 툴킷 콘솔 설치 경로} /workspace//report에 있는 .mh 파일을 큐브리드 마이그레이션 툴킷 GUI에서 열어 볼 수 있다터미널에서 바로 보고 싶다면 다음과 같이 report 명령을 이용하면 된다.

 

sh ./migration.sh report

Thank you for using CUBRID Migration Toolkit(CMT) Console.

 

Usage in Windows: migration.bat report [options] [migration history file(*.mh)]

Usage in Linux: migration.sh report [options] [migration history file(*.mh)]

 

Available [options]:

    -l,    To show the latest migration report automatically.

 

Please visit http://www.cubrid.org for more information.

Available migration history file(s):

    1405846948752.mh

    1405847351180.mh

 

 

Available migration history file(s) 항목에서 마이그레이션이 2회 실행됐고 그 보고서가 저장 돼 있음을 알 수 있다다음과 같이 보고서 파일(*.mh)을 옵션으로 추가하면 결과 보고서를 볼 수 있다.

sh ./migration.sh report  1405846948752.mh

Thank you for using CUBRID Migration Toolkit(CMT) Console.

 

Reading migration history file: <1405846948752.mh>

 

[Overview]

    [table]

           Total:[11]

       Exported:[11]

       Imported:[11]

 

보고서 파일(*.mh) GUI 화면에서 보려면 툴바에서 마이그레이션 이력을 클릭한다. 마이그레이션 이력탭이 열리면 열기를 클릭하고 해당 .mh 파일을 더블클릭한다마이그레이션 이력 목록에 해당 보고서가 추가되면 이를 더블 클릭해 상세한 보고서를 확인 할 수 있다.

img_003.jpg

큐브리드 마이그레이션 툴킷이 없으면 데이터베이스를 마이그레이션 할 때 스키마 이전을 위해 DDL 구문을 일일이 작성하고 별도의 스크립트를 작성해 실행해야 한다물론, 데이터의 양이 많은 경우 JDBC를 경유해서 데이터를 추출하는 과정에서 많은 시간이 소요될 수 있으나, 큐브리드 마이그레이션 툴킷은 번거로운 작업을 하나의 도구에서 표준화하고 자동화 할 수 있다는 것에 의의가 있겠다.

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
106 Linux CUBRID DB와 Broker 분리방안 정만영 2010.04.28 28411
105 기타 데이터 저장 구조와 테이블 재구성 file 손승일 2010.04.21 37489
104 기타 CUBRID 복제 구성하기 - 단일 서버에 구성 방법 포함 남재우 2010.03.08 30002
103 Windows 윈도우즈 환경에서 배치화일을 이용하여 백업 또는 데이터베이스 정리 수행하기 남재우 2010.03.03 27479
102 Linux CUBRID 복제 설계 가이드 file 정만영 2010.03.03 25138
101 Linux CUBRID 사용 포트와 iptables(방화벽) 설정 정만영 2010.03.01 38341
100 기타 자동증가 속성 사용 방법 및 주의 사항 남재우 2010.02.26 35661
99 기타 CUBRID 관련 유용한 기술 자료... 정병주 2010.02.19 33460
98 기타 Server HA 구성 시 CUBRID 설정과 방법 정만영 2010.02.03 21184
97 ODBC/OLEDB Vista_IIS_CUBRID_ASP연동 janus 2010.01.31 24553
96 Install CUBRID2008 R2.1 업그레이드시 serial 관련 문제 해결 방법 남재우 2010.01.28 27347
95 기타 CUBRID 데이터베이스와 연동하여 Qt어플리케이션 개발하기 - 2 3 김대진 2010.01.27 24541
94 기타 CUBRID 데이터베이스와 연동하여 Qt어플리케이션 개발하기 - 1 김대진 2010.01.14 32877
93 기타 CUBRID인덱스 구성 전략 웁쓰 2009.12.31 22193
92 기타 조인 방법(Join Method) 설명 file 웁쓰 2009.12.31 27990
91 기타 스칼라 서브쿼리 사용 가이드 웁쓰 2009.12.31 28268
90 Install CUBRID 에 텍스트큐브 설치하기 file inureyes 2009.12.31 29852
89 기타 예제로 배우는 CUBRID 스터디 문학청년 2009.12.29 18546
88 기타 독자적 테이블 사용되는 복제 재구성 file 손승일 2009.12.30 24173
87 Java SELECT ~ FOR UPDATE 대체 방법 손승일 2009.12.30 32367
Board Pagination Prev 1 2 3 4 5 6 7 8 9 Next
/ 9

Contact Cubrid

대표전화 070-4077-2110 / 기술문의 070-4077-2113 / 영업문의 070-4077-2112 / Email. contact_at_cubrid.com
Contact Sales