码迷,mamicode.com
首页 > 数据库 > 详细

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

时间:2014-09-26 21:20:59      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:style   color   ar   数据   sp   art   问题   on   c   


配置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)

标签:style   color   ar   数据   sp   art   问题   on   c   

原文地址:http://my.oschina.net/wojibuzhu/blog/321100

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!