萬盛學電腦網

 萬盛學電腦網 >> 數據庫 >> mysql教程 >> master and slave have equal MySQL server UUIDs 解決方法

master and slave have equal MySQL server UUIDs 解決方法

使用rsync配置了大量mysql,省去了大量編譯和配置的時間,隨逐個修改master和slave服務器的my.cnf,後,發現數據不能同步  

使用rsync配置了大量mysql,省去了大量編譯和配置的時間,隨逐個修改master和slave服務器的my.cnf,後,發現數據不能同步,
在slave服務器show slave status:

Fatal error: The slave I/O thread stops because master and slave have equal MySQL server UUIDs; these UUIDs must be different for replication to work.

首先檢查:
mysql> show variables like ‘server_id';
+—————+——-+
| Variable_name | Value |
+—————+——-+
| server_id | 3 |
+—————+——-+

主從並不一樣,排除該問題。

繼續排查,找到原因在於,拷貝整個data目錄,把auto.cnf文件也拷貝過來了,裡面記錄了數據庫的uuid,每個庫的uuid應該是不一樣的。

[auto]
server-uuid=6dcee5be-8cdb-11e2-9408-90e2ba2e2ea6

解決辦法,按照這個16進制格式,隨便改下,重啟mysql即可。

copyright © 萬盛學電腦網 all rights reserved