CentOS學習24 Centos7 關閉防火牆

2021-08-09 04:35:04 字數 545 閱讀 8778

centos 7.0預設使用的是firewall作為防火牆,使用iptables必須重新設定一下

1、直接關閉防火牆

systemctl stop firewalld.service #停止firewall

systemctl disable firewalld.service #禁止firewall開機啟動

2、設定 iptables service

yum -y install iptables-services

如果要修改防火牆配置,如增加防火牆埠3306

vi /etc/sysconfig/iptables 

增加規則

-a input -m state --state new -m tcp -p tcp --dport 3306 -j accept

儲存退出後

systemctl restart iptables.service #重啟防火牆使配置生效

systemctl enable iptables.service #設定防火牆開機啟動

最後重啟系統使設定生效即可。

Centos設定靜態IP及修改Centos配置檔案

centos設定靜態ip及修改centos配置檔案 51cto.com 2010 01 13 10 48 佚名 csdn 字型大小 t tcentos設定ip完成後,重啟一下網絡卡就可以了 service network restart 我們還有乙個辦法可以實現centos設定靜態ip,那就是通過 ...

Centos 編譯安裝apache 2 4

本次安裝使用centos6.7最小化安裝。檢視centos版本 lsb release a 或者 rpm q centos releaseexport pkg config path usr lib pkgconfig 或者 export pkg config path usr local lib ...

centos 編譯安裝Apache 2 4

2013年12月29日 16 40 20 configure prefix usr local web apache enable so enable rewrite enable mods shared all with apr usr local lib apr 注意 prefix時不要在最後新...