Amazon RDS 외부에서 실행되는 MySQL과의 복제

9506 단어 RDSMySQLAWS

소개



Amazon RDS는 외부 MySQL과 복제를 결합할 수 있습니다.



사전 설정



사용자 작성


  • 우선은 마스터가 되는 외부 MySQL에 복제하기 위한 유저를 작성합니다.

  • 사용자 작성
    mysql> GRANT REPLICATION SLAVE ON *.* TO 'repl'@'%' IDENTIFIED BY 'hogehoge';
    

    파라미터 설정


  • 다음에 파라미터를 설정하기 위해서 my.cnf 의 [mysqld] 에 다음의 파라미터를 설정합니다.

  • mysqld
    log-bin=db001-bin
    server-id=205
    

    2. 설정되면 mysql을 다시 시작하고 반영합니다.

    mysql 재부팅
    $ sudo /etc/init.d/mysqld restart
    Stopping mysqld:                                           [  OK  ]
    Starting mysqld:                                           [  OK  ]
    

    이것으로 사전 설정이 완료되었습니다.

    복제



    마스터 작업


  • 우선은 마스터가 되는 MySQL 를 잠급니다.

  • 자물쇠
    mysql> FLUSH TABLES WITH READ LOCK;
    

    이 상태라면 mysql에서 빠지면 해제되어 버리므로 읽기 전용으로 해 버리는 것이 안전합니다.

    읽기 전용
    mysql> SET GLOBAL read_only = ON;
    

    2. 잠그면 bin 파일과 위치를 확인합니다. (나중에 RDS로 설정할 때 필요합니다.)

    마스터 상태 확인
    mysql> SHOW MASTER STATUS\G
    *************************** 1. row ***************************
                File: db001-bin.000002
            Position: 107
        Binlog_Do_DB: 
    Binlog_Ignore_DB: 
    1 row in set (0.00 sec)
    

    3. 마스터에서 데이터를 덤프합니다.

    덤프
    $ mysqldump --databases repltest -u root -phogehoge --single-transaction --routines > db001.dump
    

    본래라면 --master-data 옵션을 붙여 두는 곳입니다만, 이 옵션을 추가하면 복원시에 에러가 발생하기 때문에 넣지 않습니다. 그래서 이전 작업에서 bin 파일과 위치를 확인하고 있습니다.

    4. 덤프하면 잠금을 해제해 둡시다.

    잠금 해제
    mysql> SET GLOBAL read_only = OFF;
    mysql> UNLOCK TABLES; 
    

    슬레이브 작업



    1. 경우에 따라 권한 문제로 복원하는 동안 오류가 발생하기 때문에 DEFINER 사용자를 변경하십시오.
    $ sed -ri 's/DEFINER=`[^`]+`@`[^`]+`/DEFINER=`<ユーザー名>`@`%`/g' db001.dump
    

    2. 덤프하면 슬레이브가 되는 RDS에 복원입니다.

    복원
    $ mysql -hrds001.cs8xkvdfl8ru.ap-northeast-1.rds.amazonaws.com -uawsuser -pmypassword < db001.dump
    

    3. mysql.rds_set_external_master 명령을 사용하여 외부 MySQL 데이터베이스를 복제 마스터로 지정합니다.

    rds_set_external_master
    mysql> CALL mysql.rds_set_external_master ('10.0.0.205', 3306, 'repl', 'hogehoge', 'db001-bin.000002', 107, 0); 
    Query OK, 0 rows affected (0.08 sec)
    

    참고까지 지정하는 스테이터스는 다음과 같습니다.

    상태 확인
    mysql> show slave status\G
    *************************** 1. row ***************************
                   Slave_IO_State: 
                      Master_Host: 10.0.0.205
                      Master_User: repl
                      Master_Port: 3306
                    Connect_Retry: 60
                  Master_Log_File: db001-bin.000002
              Read_Master_Log_Pos: 107
                   Relay_Log_File: relaylog.000001
                    Relay_Log_Pos: 4
            Relay_Master_Log_File: db001-bin.000002
                 Slave_IO_Running: No
                Slave_SQL_Running: No
                  Replicate_Do_DB: 
              Replicate_Ignore_DB: 
               Replicate_Do_Table: 
           Replicate_Ignore_Table: mysql.plugin,mysql.rds_monitor,mysql.rds_sysinfo,mysql.rds_replication_status,mysql.rds_history,innodb_memcache.config_options,innodb_memcache.cache_policies
          Replicate_Wild_Do_Table: 
      Replicate_Wild_Ignore_Table: 
                       Last_Errno: 0
                       Last_Error: 
                     Skip_Counter: 0
              Exec_Master_Log_Pos: 107
                  Relay_Log_Space: 120
                  Until_Condition: None
                   Until_Log_File: 
                    Until_Log_Pos: 0
               Master_SSL_Allowed: No
               Master_SSL_CA_File: 
               Master_SSL_CA_Path: 
                  Master_SSL_Cert: 
                Master_SSL_Cipher: 
                   Master_SSL_Key: 
            Seconds_Behind_Master: NULL
    Master_SSL_Verify_Server_Cert: No
                    Last_IO_Errno: 0
                    Last_IO_Error: 
                   Last_SQL_Errno: 0
                   Last_SQL_Error: 
      Replicate_Ignore_Server_Ids: 
                 Master_Server_Id: 0
                      Master_UUID: 
                 Master_Info_File: mysql.slave_master_info
                        SQL_Delay: 0
              SQL_Remaining_Delay: NULL
          Slave_SQL_Running_State: 
               Master_Retry_Count: 86400
                      Master_Bind: 
          Last_IO_Error_Timestamp: 
         Last_SQL_Error_Timestamp: 
                   Master_SSL_Crl: 
               Master_SSL_Crlpath: 
               Retrieved_Gtid_Set: 
                Executed_Gtid_Set: 
                    Auto_Position: 0
    1 row in set (0.00 sec)
    

    4. mysql.rds_start_replication 명령으로 복제를 시작합니다.

    복제 시작
    mysql> CALL mysql.rds_start_replication;
    +-------------------------+
    | Message                 |
    +-------------------------+
    | Slave running normally. |
    +-------------------------+
    1 row in set (1.01 sec)
    
    Query OK, 0 rows affected (1.01 sec)
    

    Slave_IO_Running 과 Slave_SQL_Running 가 Yes 이므로 복제되고 있는 것을 확인할 수 있었습니다.

    상태 확인
    mysql> show slave status\G
    *************************** 1. row ***************************
                   Slave_IO_State: Waiting for master to send event
                      Master_Host: 10.0.0.205
                      Master_User: repl
                      Master_Port: 3306
                    Connect_Retry: 60
                  Master_Log_File: db001-bin.000002
              Read_Master_Log_Pos: 256
                   Relay_Log_File: relaylog.000004
                    Relay_Log_Pos: 419
            Relay_Master_Log_File: db001-bin.000002
                 Slave_IO_Running: Yes
                Slave_SQL_Running: Yes
                  Replicate_Do_DB: 
              Replicate_Ignore_DB: 
               Replicate_Do_Table: 
           Replicate_Ignore_Table: mysql.plugin,mysql.rds_monitor,mysql.rds_sysinfo,mysql.rds_replication_status,mysql.rds_history,innodb_memcache.config_options,innodb_memcache.cache_policies
          Replicate_Wild_Do_Table: 
      Replicate_Wild_Ignore_Table: 
                       Last_Errno: 0
                       Last_Error: 
                     Skip_Counter: 0
              Exec_Master_Log_Pos: 256
                  Relay_Log_Space: 917
                  Until_Condition: None
                   Until_Log_File: 
                    Until_Log_Pos: 0
               Master_SSL_Allowed: No
               Master_SSL_CA_File: 
               Master_SSL_CA_Path: 
                  Master_SSL_Cert: 
                Master_SSL_Cipher: 
                   Master_SSL_Key: 
            Seconds_Behind_Master: 0
    Master_SSL_Verify_Server_Cert: No
                    Last_IO_Errno: 0
                    Last_IO_Error: 
                   Last_SQL_Errno: 0
                   Last_SQL_Error: 
      Replicate_Ignore_Server_Ids: 
                 Master_Server_Id: 205
                      Master_UUID: 
                 Master_Info_File: mysql.slave_master_info
                        SQL_Delay: 0
              SQL_Remaining_Delay: NULL
          Slave_SQL_Running_State: Slave has read all relay log; waiting for the slave I/O thread to update it
               Master_Retry_Count: 86400
                      Master_Bind: 
          Last_IO_Error_Timestamp: 
         Last_SQL_Error_Timestamp: 
                   Master_SSL_Crl: 
               Master_SSL_Crlpath: 
               Retrieved_Gtid_Set: 
                Executed_Gtid_Set: 
                    Auto_Position: 0
    1 row in set (0.00 sec)
    

    확인



    실제로 마스터에 무언가를 써서 슬레이브에 반영되어 있는지 확인합시다.
  • 우선, 여기에서는 새로운 repltestrds 데이터베이스를 작성하고 있습니다.

  • 마스터
    mysql> show databases;
    +--------------------+
    | Database           |
    +--------------------+
    | information_schema |
    | mysql              |
    | performance_schema |
    | repltest           |
    | test               |
    +--------------------+
    6 rows in set (0.00 sec)
    
    mysql> create database repltestrds;
    Query OK, 1 row affected (0.00 sec)
    
    mysql> show databases;
    +--------------------+
    | Database           |
    +--------------------+
    | information_schema |
    | mysql              |
    | performance_schema |
    | repltest           |
    | repltestrds        |
    | test               |
    +--------------------+
    7 rows in set (0.00 sec)
    

    2. 작성이 끝나면 슬레이브에의 반영을 확인해 봅니다.

    슬레이브
    mysql> show databases;
    +--------------------+
    | Database           |
    +--------------------+
    | information_schema |
    | innodb             |
    | mysql              |
    | performance_schema |
    | repltest           |
    | repltestrds        |
    | sys                |
    +--------------------+
    7 rows in set (0.00 sec)
    

    반영되어 있는 것을 확인할 수 있었습니다.

    결론



    어쨌든 마스터를 RDS로 만들 것이라고 생각하기 때문에 일반적으로 RDS를 외부 MySQL의 복제로 만들 기회가 적을 수 있습니다. 다른 환경에서 AWS로 마이그레이션할 때 얼마나 되나요?
    하지만 아무래도 마스터를 외부 MySQL로 하지 않으면 안 되는 경우는 이런 방식으로 짜낼 수 있습니다.

    좋은 웹페이지 즐겨찾기