mysql远程访问服务器开通3306端口


1、设定
[root@localhost ~]# /sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT
[root@localhost ~]# /sbin/iptables -I INPUT -p tcp --dport 22 -j ACCEPT
[root@localhost ~]# /sbin/iptables -I INPUT -p tcp --dport 3306 -j ACCEPT

2、保存
[root@localhost ~]# /etc/rc.d/init.d/iptables save

3、重启防火墙
[root@localhost ~]# service iptables restart

4、查看
[root@localhost ~]# /etc/init.d/iptables status

猜你喜欢

转载自jinxhj2003.iteye.com/blog/1726331
今日推荐