解决Got timeout reading communication packets

场景

mysql日志总是报Got timeout reading communication packets提示

解决

禁用skip-name-resolve

[root@test ~]# vim /etc/my.cnf
[mysqld]
skip-name-resolve

注:此语句用于跳过dns域名解析,在局域网连接时会更快捷,不过使用此命令,mysql库的user表中的host须由原来localhost改为%,否则不能连接数据库。

另一种方法把client的ip写在/etc/hosts里面,随便加个名称就行
比如:
192.168.1.111 test_name

你可能感兴趣的:(解决Got timeout reading communication packets)