master and slave have equal MySQL server ids
蚊子今天下午搭了一主三从的mysql复制,结果所有服务器都配置好后,发现从上报如下的错误
last_io_error: fatal error: the slave i/o thread stops because master and slave have equal mysql server ids; these ids must be different for replication to work (or the --replicate-same-server-id option must be used on slave but this does not always make sense; please check the manual before using it).
意思就是从上的server_id和主的一样的,经查看发现从上的/etc/my.cnf中的server_id=1这行我没有注释掉(在下面复制部分我设置了server_id),于是马上把这行注释掉了,然后重启mysql,发现还是报同样的错误。
使用如下命令查看了一下server_id
mysql> show variables like 'server_id';
+---------------+-------+
| variable_name | value |
+---------------+-------+
| server_id | 1 |
+---------------+-------+
1 row in set (0.00 sec)
发现,mysql并没有从my.cnf文件中更新server_id,既然这样就只能手动修改了
mysql> set global server_id=2; #此处的数值和my.cnf里设置的一样就行
mysql> slave start;
如此执行后,slave恢复了正常。
不过稍后蚊子使用/etc/init.d/mysqld restart重启了mysql服务,然后查看slave状态,发现又出现了上面的错误,然后查看server_id发现这个数值又恢复到了1。
之后蚊子又重新查看了一下/etc/my.cnf的内容,确认应该不是这个文件的问题,于是去google查了一下,看到mysql在启动的时候会查找/etc/my.cnf、datadir/my.cnf,user_home/my.cnf。
于是我执行了
find / -name "my.cnf"
居然在/usr/local/mysql这个目录下发现了my.cnf文件,于是蚊子将这个文件删除了,然后再重启mysql服务,发现一切恢复了正常。如果有人也出现类似的问题,不妨试试这个办法吧。
上一篇: MongoDB报错,Sort operation used more than the maximum 33554432 bytes of RAM.Add an index
下一篇: 关于CM日志问题
推荐阅读
-
master and slave have equal MySQL server ids
-
master and slave have equal MySQL server UUIDs 解决方法_MySQL
-
master and slave have equal MySQL server ids_MySQL
-
slave have equal MySQL Server UUIDs原因及解决
-
master and slave have equal MySQL server ids
-
master and slave have equal MySQL server ids_MySQL
-
master and slave have equal MySQL server ids
-
master and slave have equal MySQL server UUIDs 解决方法
-
slave have equal MySQL Server UUIDs原因及解决
-
MySQL报错:master and slave have equal MySQL server UUIDs