centos 7.0預設使用的是firewall作為防火牆,要想使用iptables必須重新設定一下。
1.關閉防火牆
[root@localhost ~]# systemctl stop firewalld.service
2.禁止防火牆開機自啟
[root@localhost ~]# systemctl disable firewalld.service
3.安裝iptables service
yum -y install iptables-services
4.修改防火牆配置,如增加防火牆埠3306
vi /etc/sysconfig/iptables
增加以下規則
-a input -m state --state new -m tcp -p tcp --dport 3306 -j accept
儲存退出後
重啟防火牆使配置生效
[root@localhost ~]# systemctl restart iptables.service
設定防火牆開機啟動
[root@localhost ~]# systemctl enable iptables.service
重啟系統使設定生效
[root@localhost ~]# reboot
注意:mysql安裝後,如果不關掉防火牆,則遠端不能連線成功。
Centos7 關閉防火牆設定
centos 7.0預設使用的是firewall作為防火牆,使用iptables必須重新設定一下 1 直接關閉防火牆 systemctl stop firewalld.service 停止firewall systemctl disable firewalld.service 禁止firewall開...
Centos7 關閉防火牆
centos7 關閉防火牆 centos 7.0預設使用的是firewall作為防火牆,使用iptables必須重新設定一下 1 直接關閉防火牆 systemctl stop firewalld.service 停止firewall systemctl disable firewalld.servi...
Centos7 關閉防火牆
1 直接關閉防火牆 systemctl stop firewalld.service 停止firewall systemctl disable firewalld.service 禁止firewall開機啟動 2 設定 iptables service yum y install iptables ...