如何开启或关闭SELinux

查看selinux

[[email protected] ~]# getenforce

Disabled

[[email protected] ~]# /usr/sbin/sestatus -v

SELinux status:                 disabled

临时关闭selinux

[[email protected] ~]# setenforce 0

setenforce: SELinux is disabled

永久关闭selinux的两种方式

[[email protected] ~]# vi /etc/sysconfig/selinux 

# 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 - SELinux is fully disabled.

SELINUX=disabled

# SELINUXTYPE= type of policy in use. Possible values are:

#       targeted - Only targeted network daemons are protected.

#       strict - Full SELinux protection.

SELINUXTYPE=targeted

~

~

第二种方式:

~

[[email protected] ~]# cat /boot/grub/menu.lst

# grub.conf generated by anaconda

#

# Note that you do not have to rerun grub after making changes to this file

# NOTICE:  You have a /boot partition.  This means that

#          all kernel and initrd paths are relative to /boot/, eg.

#          root (hd0,0)

#          kernel /vmlinuz-version ro root=/dev/sda3

#          initrd /initrd-version.img

#boot=/dev/sda

default=0

timeout=5

splashimage=(hd0,0)/grub/splash.xpm.gz

hiddenmenu

password --md5 $1$P6MX17N9$upRaE9GPh/J6Y2.weHY7B0

title CentOS (2.6.18-308.el5)

root (hd0,0)

kernel /vmlinuz-2.6.18-308.el5 ro root=LABEL=/ selinux=0

initrd /initrd-2.6.18-308.el5.img

时间: 2024-11-09 02:12:46

如何开启或关闭SELinux的相关文章

开启、关闭selinux

selinux是NSA对于强制访问控制的实现,是 Linux历史上最杰出的新安全子系统.但正是因为功能太强大,导致很多时候工作不方便进行,所以有些情况需要关闭selinux. selinux下有两个重要的文件/etc/sysconfig/selinux 和 /etc/selinux/config /etc/sysconfig/selinux是/etc/selinux/config文件的软连接 查看selinux状态命令 disabled为关闭 enbledw为开启 下面两个命令功能相同 [[em

Linux下开启关闭SeLinux

SELinux (Security-Enhanced Linux) in Fedora is an implementation of mandatory access control in the Linux kernel using the Linux Security Modules (LSM) framework. Standard Linux security is a discretionary access control model. Discretionary access c

查看、关闭SELinux

查看SELinux状态: 1./usr/sbin/sestatus -v | grep "SELinux status:"    ##如果SELinux status参数为enabled即为开启状态 2.getenforce     ##除了上面的命令还可以使用这个命令,输出结果是permissive为关闭,enforcing为开启. 关闭SELinux: 1.临时关闭(不重启系统即可生效): setenforce 0      ##设置SELinux为permissive模式,即关闭

SELinux 的开启和关闭

SELinux(Security-Enhanced Linux) 是linux中的强制访问控制,增强了系统安全性,但如果设置不好会造成很多困扰. 查看SELinux状态: 1./usr/sbin/sestatus -v SELinux status:                 enabled 2.getenforce 关闭SELinux: 1.临时关闭: setenforce 0           关闭 setenforce 1 开启 2.修改配置文件需要重启机器: 修改/etc/sel

centos 6.X 关闭selinux

SELinux(Security-Enhanced Linux) 是美国国家安全局(NSA)对于强制访问控制的实现,是 Linux历史上最杰出的新安全子系统.在这种访问控制体系的限制下,进程只能访问那些在他的任务中所需要文件.SELinux 默认安装在 Fedora 和 Red Hat Enterprise Linux 上. 虽然SELinux很好用,但是在多数情况我们还是将其关闭,因为在不了解其机制的情况下使用SELinux会导致软件安装或者应用部署失败 以下就是关闭SELinux的方法 系统

CentOS 7.X 关闭SELinux

1.查看 [root@dev-server ~]# getenforce Disabled [root@dev-server ~]# /usr/sbin/sestatus -v SELinux status: disabled 2.临时关闭 ##设置SELinux 成为permissive模式 ##setenforce 1 设置SELinux 成为enforcing模式 setenforce 0 3.永久关闭 vi /etc/selinux/config 将SELINUX=enforcing改为

centos6 查看SELinux状态 关闭SELinux

SELinux(Security-Enhanced Linux) 是美国国家安全局(NSA)对于强制访问控制的实现,是 Linux历史上最杰出的新安全子系统.在这种访问控制体系的限制下,进程只能访问那些在他的任务中所需要文件.SELinux 默认安装在 Fedora 和 Red Hat Enterprise Linux 上. 虽然SELinux很好用,但是在多数情况我们还是将其关闭,因为在不了解其机制的情况下使用SELinux会导致软件安装或者应用部署失败 以下就是关闭SELinux的方法 系统

关闭selinux

今天配置nginx的时候 然后总是提示权限,明明给了777权限.始终还是不行,重装了几次,最后想到可能是selinux导致的.就关掉selinux 一切正常. 关于selinux 是啥  以前也不是很清楚是干啥的,只是知道这个security linux  就是为了让linux 更加安全的 但是这个东西会导致一些问题.所以很多人都是先关闭它 selinux介绍. SELinux是一种基于 域-类型 模型(domain-type)的强制访问控制(MAC)安全系统,它由NSA编写并设计成内核模块包含

linux 关闭 SELinux方法

查看SELinux状态: 1./usr/sbin/sestatus -v      ##如果SELinux status参数为enabled即为开启状态 SELinux status:                 enabled 2.getenforce                 ##也可以用这个命令检查 关闭SELinux: 1.临时关闭(不用重启机器): setenforce 0                  ##设置SELinux 成为permissive模式 ##seten