메뉴 건너뛰기

컴' 게시판

본문시작

IT/개발
2012.08.10 15:36

MySQL Replication

조회 수 10 추천 수 0 댓글 0
MySQL 5.5.25 Replication

Replication 설정을 시작하기 전에
http://jmkjb.tistory.com/entry/SetupMySQL5525 에 게시된 글처럼
MySQL 5.5.25가 설치되어있다는 전제 하에 진행함. 

Master가 되는 장비와 Slave가 되는 장비는 모두 동일한 스펙이며, 동일한 MySQL 버전임.


-- Master DB 작업 순서 및 내역 
 

1. /etc/my.cnf (기본적으로 셋팅되어 있기 때문에 수정할 내용은 없고, 아래와 같이 셋팅되어있는지 확인)
   server-id = 1
   log-bin=mysql-bin 

2. Master DB로 접속할 Replication 계정 생성
    mysql> grant replication slave on *.* to 'master_user'@'%' identified by 'master_user';

3. 데이터 백업을 위한 테이블 Lock 및 현재 로그 시퀀스 번호 확인
    mysql> flush tables with read lock;

    mysql> show master status;

아래의 그림은 2~3번 과정.

 

4. 데이터 백업 및 백업 파일 Slave DB로 이동, 복원
    mysqldump -u root -p --all-databases > all_databases.sql 

아래의 그림은 데이터 백업


Slave DB로 이동은 scp 또는 ftp로 전송한다.

5. 3번 단계에서의 Lock을 해제
    mysql> unlock tables;

6. Master DB 재시작 (/etc/my.cnf 의 변경이 없었다면, 재시작할 필요없음.)
    /etc/rc.d/init.d/mysql stop 
    /etc/rc.d/init.d/mysql start 


-- 
 Slave DB 작업 순서 및 내역  

7.  /etc/my.cnf
   server-id = 2
   log-bin=mysql-bin

8. Master DB에서 백업받은 데이터를 복원

 아래의 그림은 Slave DB로 복사된 Master DB 데이터 백업 파일을 복원


9. Slave DB 재시작 
   (지금 상황처럼, 데이터베이스 전체를 받아 초기화되어있는 MySQL로 복원한 경우에는 재시작을 해준다.)
    /etc/rc.d/init.d/mysql stop 
    /etc/rc.d/init.d/mysql start

10. Slave DB 셋팅 및 서비스 시작



mysql> change master to 
    -> master_host='192.168.1.9', --> Master DB Address
    -> master_user='master_user', --> 생성된 Replication 계정 ID
    -> master_port=3306,
    -> master_password=' master_user ', --> 생성된 Replication 계정 Password
    -> master_log_file='mysql-bin.000015', --> Master DB에서 show master status; 통해 얻은 로그 파일 명 

    -> master_log_pos=261;  --> Master DB에서 show master status; 통해 얻은 로그 파일 포지션(=?시퀀스) 

mysql> start slave;

11. Replication 이 정상적으로 운영되는지 확인.

     Master DB
       mysql> show master status; 
                     --> Position 값 확인.

     Slave DB
       mysql> show slave status; 
                    --> Read_Master_Log_Pos 값이 Master Position 값과 일치하는 확인.
                          Slave_IO_Running, Slave_SQL_Running 값이 Yes 인지 확인.

     위의 같은 상황이라면 Replication 셋팅은 완료.


링크 : http://jmkjb.tistory.com/171


  1. 14
    Nov 2012
    10:28

    JavaScript 압축 도구

    CategoryIT/개발 By꿈자 Reply0 Views11 Votes0
    Read More
  2. 13
    Nov 2012
    17:57

    아이패드 미니에 나오는 광...

    Category개인자료 By꿈자 Reply0 Views2059187 Votes0
    Read More
  3. 09
    Nov 2012
    11:11

    IMG태그에 바이러리로 이미...

    CategoryIT/개발 By꿈자 Reply0 Views15 Votes0
    Read More
  4. 31
    Oct 2012
    16:41

    Node.js 한글문서

    CategoryIT/개발 By꿈자 Reply0 Views40151 Votes0
    Read More
  5. 30
    Oct 2012
    14:58

    성능테스트툴 jMeter

    CategoryIT/개발 By꿈자 Reply0 Views69 Votes0
    Read More
  6. 12
    Oct 2012
    16:49

    Mac OS X Lion에 wget 설치

    CategoryIT/개발 By꿈자 Reply0 Views50 Votes0
    Read More
  7. 04
    Oct 2012
    13:12

    아스키 특수문자 표

    CategoryIT/개발 By꿈자 Reply0 Views39 Votes0
    Read More
  8. 06
    Sep 2012
    18:01

    iOS 개발 관련 사이트

    CategoryIT/개발 By꿈자 Reply0 Views7 Votes0
    Read More
  9. 24
    Aug 2012
    11:33

    Git

    CategoryIT/개발 By꿈자 Reply0 Views103 Votes0
    Read More
  10. 10
    Aug 2012
    15:36

    MySQL Replication

    CategoryIT/개발 By꿈자 Reply0 Views10 Votes0
    Read More
Board Pagination Prev 1 ... 13 14 15 16 17 Next
/ 17