首页 > 代码库 > msyql主从复制 Last_IO_Errno: 1042

msyql主从复制 Last_IO_Errno: 1042

在slave服务器上执行 show slave status\G 时的报错:

        Seconds_Behind_Master: NULL
Master_SSL_Verify_Server_Cert: No
                Last_IO_Errno: 1042
                Last_IO_Error: error connecting to master ‘rep@192.168.6.136:3306‘ - retry-time: 60  retries: 86400
               Last_SQL_Errno: 0
               Last_SQL_Error:
  Replicate_Ignore_Server_Ids:
             Master_Server_Id: 0
1 row in set (0.00 sec)


解决方法:

在master服务器上,修改my.cnf文件,在mysqld模块下加入参数:skip-name-resolve

然后重启服务器。

msyql主从复制 Last_IO_Errno: 1042