Mysql 1593错误集合
在mysql进行操作时候遇到的一些问题
Last_IO_Errno: 1593
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).
问题原因:
servier_id服务器命令的ID一致导致的问题
该问题一般出现在复制mysql文件,比如搬家,做同步,直接打包mysql文件夹
解决方案:
1.修改my.ini里面的server_id =XXX(个人建议跟端口或者IP)
2.有时候会遇到my.ini配置文件不生效,则使用下面方法
查看server_id:show variables like 'server_id';
修改server_id:set global server_id=2;
- 停止stop salve;
- 启动start savle;
近期评论