溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Linux怎么關(guān)閉selinux

發(fā)布時間:2022-02-03 08:52:03 來源:億速云 閱讀:454 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要介紹“Linux怎么關(guān)閉selinux”的相關(guān)知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“Linux怎么關(guān)閉selinux”文章能幫助大家解決問題。

Linux怎么關(guān)閉selinux

1、查看

 [root@dev-server ~]# getenforce
 Disabled
 [root@dev-server ~]# /usr/sbin/sestatus -v
 SELinux status:                 disabled

2、臨時關(guān)閉

 ##設(shè)置SELinux 成為permissive模式
 ##setenforce 1 設(shè)置SELinux 成為enforcing模式
 setenforce 0

3、永久關(guān)閉

 vi /etc/selinux/config

將SELINUX=enforcing改為SELINUX=disabled 設(shè)置后需要重啟才能生效

centos 7.0 查看selinux狀態(tài)|關(guān)閉|開啟

Linux在安裝好之后通常SELinux都是出于默認(rèn)開啟的狀態(tài),開啟的情況下會導(dǎo)致一些服務(wù)的安裝不成功。

在不需要的情況下完全可以關(guān)閉掉,下面是在centos 7.0里面如何查看,關(guān)閉selinux。

查看selinux狀態(tài)

 [root@localhost ~]``# sestatus ``SELinux status:         enabled ``SELinuxfs ``mount``:        ``/sys/fs/selinux` `SELinux root directory:     ``/etc/selinux` `Loaded policy name:       targeted ``Current mode:          enforcing ``Mode from config ``file``:     enforcing ``Policy MLS status:       enabled ``Policy deny_unknown status:   allowed ``Max kernel policy version:   28

臨時關(guān)閉

 [root@localhost ~]``# setenforce 0

永久關(guān)閉

可以修改配置文件/etc/selinux/config,將其中SELINUX設(shè)置為disabled。

 [root@localhost ~]``# cat /etc/selinux/config  
 
 # 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=enforcing
 SELINUX=disabled
 # SELINUXTYPE= can take one of three two values:
 #   targeted - Targeted processes are protected,
 #   minimum - Modification of targeted policy. Only selected processes are protected.  
 #   mls - Multi Level Security protection.
 SELINUXTYPE=targeted
 [root@rdo ~]``# sestatus
 SELinux status:         disabled

關(guān)于“Linux怎么關(guān)閉selinux”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識,可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI