centos6關閉selinux和防火牆

2021-07-16 16:57:28 字數 951 閱讀 4451

#vi /etc/selinux/config

將檔案裡標紅的部分改為disabled

# this file controls the state of selinux on the system.

# selinux= can take one of these three values:

#     enforcing - selinux security policy is enforced.

#     permissive - selinux prints warnings instead of enforcing.

#     disabled - no selinux policy is loaded.

selinux=disabled

# selinuxtype= can take one of these two values:

#     targeted - targeted processes are protected,

#     mls - multi level security protection.

selinuxtype=targeted

重啟後永久關閉selinux

#sestatus -v

這個命令可以檢視selinux的狀態

#setenforce 0

這個命令可以臨時關閉selinux

#service iptables stop

#service ip6tables stop

這個命令可以臨時關閉防火牆

#chkconfig iptables off

#chkconfig ip6tables off

這個命令可以永久關閉防火牆

#chkconfig iptables --list

#chkconfig ip6tables --list

這個命令可以檢視防火牆的狀態

CentOS系統如何快速關閉SELINUX

centos系統是linux發行版之一,它是來自於red hat enterprise linux依照開放源 規定發布的源 所編譯而成。由於出自同樣的源 因此有些要求高度穩定性的伺服器以centos替代商業版的red hat enterprise linux使用。我們有很多人叫它社群企業作業系統,不...

centos 6和centos7關閉防火牆的方法

centos 6 關閉命令 service iptables stop 永久關閉防火牆 chkconfig iptables off 兩個命令同時執行,執行完成後檢視防火牆關閉狀態 service iptables status centos7 的防火牆配置跟以前版本有很大區別,經過大量嘗試,終於找...

CentOS 6 啟用 關閉,新增倉庫源位址

主要就是純小白,啥命令都不知道的。最近擼了一台bwh的vps,redhat官方文件,簡單的收集一下 當做筆記咯 新增yum倉庫 yum config manager add repo repository url啟用倉庫源 yum config manager enable repository 禁...