永久關閉selinux 防火牆

2022-05-04 02:42:10 字數 983 閱讀 1484

1 永久方法 – 需要重啟伺服器

修改/etc/selinux/config檔案中設定selinux=disabled ,然後重啟伺服器。

2 臨時方法 – 設定系統引數

使用命令setenforce 0

附:

setenforce 1 設定selinux 成為enforcing模式

setenforce 0 設定selinux 成為permissive模式

謝謝!centos6 關閉防火牆

service iptables stop  臨時關閉

chkconfig iptables off   禁止防火牆開機自啟

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

1、直接關閉防火牆

firewall-cmd --state#檢視預設防火牆狀態(關閉後顯示notrunning,開啟後顯示running)
systemctl stop firewalld.service #停止firewall

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

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

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

1、直接關閉防火牆

firewall-cmd --state#檢視預設防火牆狀態(關閉後顯示notrunning,開啟後顯示running)
systemctl stop firewalld.service #停止firewall

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

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

謝謝

關閉防火牆和selinux

關閉防火牆和selinux redhat使用了selinux來增強安全,關閉的辦法為 永久有效 修改 etc selinux config 檔案中的 selinux 為 disabled 然後重啟。vi etc selinux config 2.即時生效 setenforce 0 關閉防火牆的方法為...

Centos 永久關閉防火牆

1開啟虛擬機器,然後輸入命令 systemctl status firewalld.service 並按下回車鍵。2 出現上圖中的active running 此時說明防火牆已經開啟了,3在命令列中輸入systemctl stop firewalld.service命令,進行關閉防火牆。4然後再使用...

RedHat 關閉防火牆 優化SELinux

關閉防火牆 立即關閉防火牆 service iptables stop 永久關閉防火牆 下次開機才會生效 chkconfig iptables off 檢視防火牆開機啟動模式 chkconfig list iptables優化selinux 當前臨時切換selinux模式到permissive se...