• 1
  • 2
  • 3
  • 4
  • 5
阿里云主机ECS 首 页  »  帮助中心  »  云服务器  »  阿里云主机ECS
mysql提示“Lost connection to MySQL server at 'reading initial communication packet'”错误的分析解决
发布日期:2016-1-3 19:1:35

  问题描述:mysql远程连接提示“Lost connection to MySQL server at 'reading initial communication packet'”错误

  解决办法:

  1.检查是不是有防火墙限制

  2.检查mysql是不是有访问权限

  远程授权:

  use mysql; Grant all privileges on *.* to 'root'@'%' identified by 'kdm001' with grant option;

  flush privileges;

  3.检查my.ini文件里是否设置了bind-address 参数,若有将该条注释掉就行了。

  4.

  1)在my.ini中添加skip-name-resolve

  vi /etc/my.cnf

  [mysqld] 段加skip-name-resolve

  2)修改hosts.allow

  vi /etc/hosts.allow

  加mysqld : ALL : ALLOW

  mysqld-max : ALL :ALLOW