當前位置:
首頁 >
centos 7.0 查看selinux状态|关闭|开启
發布時間:2025/3/15
20
豆豆
生活随笔
收集整理的這篇文章主要介紹了
centos 7.0 查看selinux状态|关闭|开启
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
Linux在安裝好之后通常SELinux都是出于默認開啟的狀態,開啟的情況下會導致一些服務的安裝不成功。
在不需要的情況下完全可以關閉掉,下面是在centos 7.0里面如何查看,關閉selinux。
查看selinux狀態
Linux在安裝好之后通常SELinux都是出于默認開啟的狀態,開啟的情況下會導致一些服務的安裝不成功。 在不需要的情況下完全可以關閉掉,下面是在centos 7.0里面如何查看,關閉selinux。 查看selinux狀態[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 臨時關閉[root@localhost ~]# setenforce 0 永久關閉,可以修改配置文件/etc/selinux/config,將其中SELINUX設置為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?
臨時關閉
[root@localhost ~]# setenforce?
| ? |
永久關閉,可以修改配置文件/etc/selinux/config,將其中SELINUX設置為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
?
轉載于:https://www.cnblogs.com/gjack/p/9027816.html
總結
以上是生活随笔為你收集整理的centos 7.0 查看selinux状态|关闭|开启的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: poj1979 深度优先搜索 挑战程式设
- 下一篇: git常用命令备忘