MySQL報錯Slave: received end packet from server, apparent master shutdown

feelpurple發表於2018-11-16

MySQL 一臺從庫的錯誤日誌,大量報下面的錯誤資訊

2018-11-16 15:11:12 10951 [Note] Slave: received end packet from server, apparent master shutdown: 
2018-11-16 15:11:12 10951 [Note] Slave I/O thread: Failed reading log event, reconnecting to retry, log 'mysql-bin.000369' at position 255843250
2018-11-16 15:11:12 10951 [Warning] Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information.
2018-11-16 15:20:09 10951 [Note] Slave: received end packet from server, apparent master shutdown: 
2018-11-16 15:20:09 10951 [Note] Slave I/O thread: Failed reading log event, reconnecting to retry, log 'mysql-bin.000369' at position 276447773
2018-11-16 15:20:09 10951 [Warning] Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information.

這套DB有三臺從庫,而主庫上面透過命令只能看到兩臺從庫

root [(none)]> show slave hosts;
+-----------+------+------+-----------+--------------------------------------+
| Server_id | Host | Port | Master_id | Slave_UUID                           |
+-----------+------+------+-----------+--------------------------------------+
|   1373324 |      | 3324 |    174144 | 5dfa3e4b-df15-11e8-8c37-06cbe47ccefb |
|    174192 |      | 3306 |    174144 | b24e27f0-dce5-11e8-bdf4-0cc47a397e1c |
+-----------+------+------+-----------+--------------------------------------+
2 rows in set (0.00 sec)

到缺少的那臺從庫上面檢查server-id,看有沒有和其他從庫相同

server-id並不相同

mysql> show global variables like 'server%id%';
+----------------+--------------------------------------+
| Variable_name  | Value                                |
+----------------+--------------------------------------+
| server_id      | 2461620                              |
| server_id_bits | 32                                   |
| server_uuid    | b24e27f0-dce5-11e8-bdf4-0cc47a397e1c |
+----------------+--------------------------------------+
3 rows in set (0.00 sec)

排除了server-id,還有可能是DB的uuid相同而導致從資料庫註冊不到主庫。

刪除資料庫目錄下面的server-id檔案

# cd /disk1/mysql3320
# cat auto.cnf 
[auto]
server-uuid=11478f92-e973-11e8-8fcf-0cc47a663554
# rm auto.cnf

之後重啟問題從庫,報錯消失。


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26506993/viewspace-2220426/,如需轉載,請註明出處,否則將追究法律責任。

相關文章