반응형
MySQL에서 리플리케이션을 다시 연결하는 방법
MySQL 리플리케이션의 정상 여부를 확인하는 방법
- 슬레이브 서버 상태 확인
show slave status\G
mysql> show slave status\G
*************************** 1. row ***************************
Slave_IO_State:
Master_Host: 192.168.56.101
Master_User: replication_user
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: mysql-bin.000004
Read_Master_Log_Pos: 154
Relay_Log_File: node2-relay-bin.000016
Relay_Log_Pos: 320
Relay_Master_Log_File: mysql-bin.000004
Slave_IO_Running: No
Slave_SQL_Running: No
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: 154
Relay_Log_Space: 0
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: 3ef5caf4-f619-11ed-96e6-080027704bff
Master_Info_File: /usr/local/mysql-5.7.41/data/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
Replicate_Rewrite_DB:
Channel_Name:
Master_TLS_Version:
1 row in set (0.00 sec)
- 리눅스 쉘 명령어로 한 줄로 슬레이브 서버 상태 확인
mysql -hlocalhost -uroot -p'mysqlpassword' -e "show slave status\G" | egrep 'Slave_IO_Running|Slave_SQL_Running|Seconds_Behind_Master'
$ mysql -hlocalhost -uroot -p'mysqlpassword' -e "show slave status\G" | egrep 'Slave_IO_Running|Slave_SQL_Running|Seconds_Behind_Master'
mysql: [Warning] Using a password on the command line interface can be insecure.
Slave_IO_Running: No
Slave_SQL_Running: No
Seconds_Behind_Master: NULL
Slave_SQL_Running_State:
- Slave_IO_Running 및 Slave_SQL_Running 필드를 확인하여 I/O 스레드와 SQL 스레드가 실행 중인지 여부를 파악합니다.
- Seconds_Behind_Master 필드를 통해 Master와 Slave 사이의 지연 시간을 확인할 수 있습니다. 값이 0이면 동기화가 완료된 것을 의미합니다.
마스터 서버에서 File 및 Position 값을 확인
- Master_Log_File, Read_Master_Log_Pos 정보 확인
show master status\G
mysql> show master status\G
*************************** 1. row ***************************
File: mysql-bin.000012
Position: 154
Binlog_Do_DB:
Binlog_Ignore_DB:
Executed_Gtid_Set:
1 row in set (0.00 sec)
슬레이브 서버 리플리케이션 재구성
- 복제(리플리케이션) 중지
STOP SLAVE;
- Master 서버와 Slave 서버 간의 복제 상태를 확인합니다. Master 서버에서 SHOW MASTER STATUS; 명령을 실행하여 File 및 Position 값을 확인합니다. Slave 서버에서 SHOW SLAVE STATUS\G; 명령을 실행하여 Master_Log_File와 Read_Master_Log_Pos 값을 확인합니다.
- 복제 설정을 재설정
RESET SLAVE;
- CHANGE MASTER TO 문을 사용하여 복제 설정을 업데이트
CHANGE MASTER TO
MASTER_HOST='192.168.56.101',
MASTER_USER='replication_user',
MASTER_PASSWORD='password',
MASTER_LOG_FILE='mysql-bin.000012',
MASTER_LOG_POS=154;
master_ip_address는 Master 서버의 IP 주소, replication_user와 replication_password는 Master 서버에 복제를 위해 설정한 사용자 계정 정보입니다. master_log_file와 master_log_pos는 이전 단계에서 확인한 Master 서버의 File 및 Position 값입니다.
- 복제(리플리케이션) 다시 시작
START SLAVE;
- 슬레이브 서버에서 "SHOW SLAVE STATUS\G" 명령을 실행하여 복제 상태를 확인
mysql -hlocalhost -uroot -p'mysqlpassword' -e "show slave status\G" | egrep 'Slave_IO_Running|Slave_SQL_Running|Seconds_Behind_Master'
$ mysql -hlocalhost -uroot -p'mysqlpassword' -e "show slave status\G" | egrep 'Slave_IO_Running|Slave_SQL_Running|Seconds_Behind_Master'
mysql: [Warning] Using a password on the command line interface can be insecure.
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
Seconds_Behind_Master: 0
Slave_SQL_Running_State: Slave has read all relay log; waiting for more updates
Slave 서버에서 SHOW SLAVE STATUS\G; 명령을 실행하여 복제 상태를 확인합니다.
Slave_IO_Running 및 Slave_SQL_Running 값이 Yes로 표시되는지 확인하고, Seconds_Behind_Master 값이 0인지 확인합니다.
- 마스터 서버에서 슬레이브 서버의 호스트와 포트 정보를 확인
SHOW SLAVE HOSTS;
728x90
반응형
'리눅스' 카테고리의 다른 글
[리눅스] MySQL Replication 구성(MySQL 복제) (0) | 2023.05.23 |
---|---|
[리눅스] MySQL MHA 원복(mha failback) (0) | 2023.05.23 |
MySQL에서 신규 데이터베이스를 생성하고 데이터를 추가하고 조회하는 방법 (0) | 2023.05.23 |
[리눅스] MySQL 5.7에서 마스터-슬레이브(Master-Slave) 구성을 설정하는 방법 (0) | 2023.05.23 |
MySQL 서버에서 UUID 확인하는 방법 (0) | 2023.05.23 |