mysql replication 간단하게 구성
* mysql(mariadb) replicatin을 간단하게 구성해 봅시다. 이런저런 설정 건들지 말고 심플하게.
* 해당 작업은 mysql 5.5 버전에서 진행하였습니다.
* 해당 작업은 mysql 5.5 버전에서 진행하였습니다.
[ Master DB server ] i) mycnf 설정? [root@DB_master ~]# vi /etc/my.cnf server-id = 2 [root@DB_master ~]# /etc/init.d/mysqld restart * server-id 는 어떤 번호도 노상관 입니다. slave서버와 다르게만 하면 되고, 통상적으로 master 1 slave 2 ~ 이런식으로 설정 하지만 저는 실수로 반대로 해버렸습니다. * 현재 master 2 , slave 1 입니다. * 가장 중요한건 데이터 덤프시 데이터가 쌓이지 않는게 베스트지만 어쩔수 없다면 lock을 걸고 진행합니다.( 그냥 웹 데몬 내리고 진행하세요 제일 마음 편합니다.) ii) replication 권한추가 * replication 구설할때 replication 계정을 따로 만들지만. 저는 기존 디비 계정으로 진행했습니다. 통상적으로는 replication 계정을 따로 만들어서 권한 설정을 해줍니다. [root@DB_master ~]# mysql -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 98024 Server version: 5.5.29-log Source distribution Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> GRANT REPLICATION SLAVE ON {db명}.* TO '{계정명}'@'{slave_host_ip}' IDENTIFIED BY '{password}'; mysql> flush privileges; iii-1) 웹서버 중단 후 DB dump [root@DB_master ~]# mysqldump -u root -p --master-data=2 --databases --no-autocommit=1 --single-transaction=1 --extended-insert=1 {DB명} > DB_master.sql 또는 iii-2) 웹서버 무중단 DB dump mysql> FLUSH TABLES WITH READ LOCK; [root@DB_master ~]# mysqldump -u root -p --master-data=2 --databases --no-autocommit=1 --single-transaction=1 --extended-insert=1 {DB명} > DB_master.sql mysql> UNLOCK TABLES; iv) dump file 복사 * scp, rsync 등으로 이동 [root@DB_master ~]# scp DB_marster.sql 192.168.10.10:/{저장경로}
[ SlaveDB server ] i) mycnf 설정 server-id = 2 relay-log = slave-relay-bin slave-skip-errors = all [root@DB_slave ~]# /etc/init.d/mysqld restart ii) master db 로그파일 지정 및 포지션값 진행 * 아래 작업 진행 후 binlog 파일과, log_pos 값을 빼서 쿼리를 만들어 둡니다. [root@DB_slave]# cat DB_master.sql | grep 'CHANGE MASTER' -- CHANGE MASTER TO MASTER_LOG_FILE='mysql-bin.000014', MASTER_LOG_POS=916928; * slave 에서 실행할 쿼리 change master to master_host='{MASTER_SERVER_IP}', master_user='{REPLICATION_계정}', master_port=3306, master_password='{PASSWORD}', master_log_file='mysql-bin.000014', master_log_pos=916928; iii) dump 복구 진행 및 replication 구동 * mysql을 접속하여 db생성진행 하고, db선택, source 명령어를 통해 sql 덤프파일을 복원진행합니다. * 위에 만들어 놓은 쿼리를 입력하고, start slave 명령어를 통해 replicatin을 구동합니다. [root@DB_master ~]# mysql -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 98024 Server version: 5.5.29-log Source distribution Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> create database {replication db명}; mysql> use {replication db명}; mysql> source /{경로}/DB_master.sql mysql> change master to master_host='{MASTER_SERVER_IP}', master_user='{REPLICATION_계정}', master_port=3306, master_password='{PASSWORD}', master_log_file='mysql-bin.000014', master_log_pos=916928; mysql> start slave; iv) replicatin 상태값 확인 mysql> show slave status \G; *************************** 1. row *************************** Slave_IO_State: Waiting for master to send event Master_Host: {MATER_SERVER_IP} Master_User: {REPLICATION 계정} Master_Port: 3306 Connect_Retry: 60 Master_Log_File: mysql-bin.000014 Read_Master_Log_Pos: 40651322 Relay_Log_File: slave-relay-bin.000002 Relay_Log_Pos: 40650801 Relay_Master_Log_File: mysql-bin.000014 Slave_IO_Running: Yes Slave_SQL_Running: Yes Replicate_Do_DB: Replicate_Ignore_DB: Replicate_Do_Table: Replicate_Ignore_Table: Replicate_Wild_Do_Table: Replicate_Wild_Ignore_Table: Last_Errno: 0 Last_Error: Skip_Counter: 0 Exec_Master_Log_Pos: 40650655 Relay_Log_Space: 40651624 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: 2 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: 2 1 row in set (0.00 sec) ERROR: No query specified * 정상적으로 replication이 구성 되었습니다. * 위 slave_{}_runing 부분이 yes 이고, Last_{}_ERR.. 쪽에 에러 메시지 등이 발생하지 않으면 정상적으로 구성이 된것 입니다. 계정 스테이터스 명령어를 치게 되면 내용의 값들이 변경 되는것을 확인 할 수 있습니다.
0 개의 댓글