Centos7設定關閉防火牆

阿豪聊乾貨發表於2016-09-15

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安裝後,如果不關掉防火牆,則遠端不能連線成功。

相關文章