[MySQL] master-slave server_id error

DeMar_Beom·2024년 11월 18일
0

SQL

목록 보기
18/18

mysql master-slave 를 구축할 때, 각 server_id 를 각기 다르게 설정해야 하는 이유

master-slave server_id를 다르게 해야하는 이유

1) server 식별

  • MySQL 복제 환경에서 SERVER_ID 는 각 서버를 고유하게 식별하는 역할입니다.
  • Master와 여러 slave 서버가 있는 경우, server_id 를 기준ㅇ드로 어떤 서버가 어떤 데이터를 처리하는지 구분해 줍니다.

2) binary log ack 오류 방지

  • master에서 데이터 변경사항을 binlog로 slave에 보내면 sync기준에 따라 다르지만 slave는 master에 응답(ACK)을 보내야 됩니다.
  • 하지만 server_id가 동일하면 slave가 binlog를 처리하는 과정에서 자신의 변경사항을 다시 master로 보낼 때 에러가 발생하게 됩니다.

에러 확인

master-slave 구축

  • master 서버와 slave 2대를 구축한 후에 slave는 server_id를 동일하게 설정해봤습니다
  • slave1를 먼저 연결 후에 slave2을 연결하였을 때 slave2에서 아래와 같은 오류가 발생했습니다.
    -- slave1는 정상동작

root@localhost:07:12:27>show slave status\G;
*************************** 1. row ***************************
               Slave_IO_State:
                  Master_Host: ????.?????.????.???
                  Master_User: repl_user
                  Master_Port: 3306
                Connect_Retry: 60
              Master_Log_File: mysql-bin.000017
          Read_Master_Log_Pos: 154
               Relay_Log_File: mysql-relay.000005
                Relay_Log_Pos: 367
        Relay_Master_Log_File: mysql-bin.000017
             Slave_IO_Running: No
            Slave_SQL_Running: Yes
              Replicate_Do_DB:
          Replicate_Ignore_DB: mysql,test,information_schema,performance_schema,sys
           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: 736
              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: 1236
                Last_IO_Error: Got fatal error 1236 from master when reading data from binary log: 'A slave with the same server_uuid/server_id as this slave has connected to the master; the first event 'mysql-bin.000016' at 25755697, the last event read from '/usr/local/mysql/logs/bin/mysql-bin.000017' at 154, the last byte read from '/usr/local/mysql/logs/bin/mysql-bin.000017' at 154.'
               Last_SQL_Errno: 0
               Last_SQL_Error:
  Replicate_Ignore_Server_Ids:
             Master_Server_Id: 1
                  Master_UUID: 6b05b639-c29b-11ee-b806-000c299c3d06
             Master_Info_File: /usr/local/mysql/data/master.info
                    SQL_Delay: 0
          SQL_Remaining_Delay: NULL
      Slave_SQL_Running_State: Slave has read all relay log; waiting for more updates
           Master_Retry_Count: 86400
                  Master_Bind:
      Last_IO_Error_Timestamp: 241118 06:55:20
     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 복제 환경에서 Slave 서버의 server_uuid 또는 server_id가 Master 서버에 이미 연결된 다른 Slave와 동일할 때 발생합니다.
  • MySQL은 복제 구성에서 각 서버가 고유한 식별자(server_id와 server_uuid)를 가져야 하는데, 중복이 발생하면 복제가 중단됩니다.

결론은, slave구성할 때는 꼭 my.cnf 에 server_id를 다르게 설정해 주시기 바랍니다!
주로 d클래스의 주소를 사용하는 경우가 많습니다.

0개의 댓글