Can‘t connect to MySQL server on ‘IP‘ (10060)


配置iptables,使他容许3306的访问

加入下面脚本...问题消失了(直接在命令行界面执行下面语句):

iptables -I INPUT -p tcp --dport 3306 -j ACCEPT;  //访问本机的3306的端口的数据包都允许(进口)

iptables-save;  //保存该脚本

service iptables save;   //保证重启后脚本还能生效

iptables -I OUTPUT -p tcp --sport 3306 -j ACCEPT;  //把3306改为源端口(出口)

iptables-save;

service iptables save;

service iptables restart


Can‘t connect to MySQL server on ‘IP‘ (10060)

上一篇:html5+css3中的background: -moz-linear-gradient 用法


下一篇:js 正则之 判断密码类型