MySQL数据库连接不上服务器的多种解决方法(10060错误)
主要有三个原因:
1、网络不通,这个就不说了。可以ping数据库主机,看是否能ping通。
2、mysql授权表里没有远程机器的权限,及需要在授权表mysql.user添加
1 2 3 |
grant all privileges on *.* to 'root'@'远程登陆IP' identified by '远程登陆密码' flush privileges; |
如图所示。%为无限制、
3、防火墙禁止3306端口,以iptable为例
vi /etc/sysconfig/iptables
-A RH-Firewall-1-INPUT -m state –state NEW -m tcp -p tcp –dport 3306-j ACCEPT
service iptables restart
ps: iptables设置
1) 重启后生效
开启: chkconfig iptables on
关闭: chkconfig iptables off
2) 即时生效,重启后失效
开启: service iptables start
关闭: service iptables stop
- MySQL如何按月份统计数据详解(转)
- Linux下apache中MPM的模式(Prefork和Worker)选择与比较[转]