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 上一条: linux系统mysql跳过密码登陆操作登陆设置的具体操作 下一条: Ubuntu apt-get 安装提示“error processing package install-info (--configure)”错误的解决
|