赞
踩
SELinux is very powerful security mechanism for Linux distributions. Distributions like CentOS, RHEL or Fedora comes SELinux enabled by default. In some situations we do not need SELinux protection especially in end user systems. In this tutorial we will look how to disable SELinux temporarily or Permanently.
SELinux是Linux发行版非常强大的安全机制。 像CentOS,RHEL或Fedora这样的发行版默认都启用了SELinux。 在某些情况下,我们不需要SELinux保护,尤其是在最终用户系统中。 在本教程中,我们将研究如何临时或永久禁用SELinux。
First step is getting information about SELinux status. We can get and list SELinux status with the sestatus
command.
第一步是获取有关SELinux状态的信息。 我们可以使用sestatus
命令获取并列出SELinux状态。
$ sestatus
We can see from first line of output that the SELinux status
is enabled
从输出的第一行可以看到SELinux status
已enabled
There is different ways to disable SELinux. Disabling SELinux temporarily work only for current run. After the system is rebooted SELinux configuration will revert to the persistent one and the SELinux will be enabled. We can disable with the following ways. All of them requires root privileges.
有多种禁用SELinux的方法。 暂时禁用SELinux仅适用于当前运行。 重启系统后,SELinux配置将恢复为永久配置,并启用SELinux。 我们可以通过以下方式禁用。 所有这些都需要root特权。
$ echo 0 > /selinux/enforce
OR
要么
$ setenforce 0
OR
要么
$ setenforce Permissive
The best way to get rid of from SELinux is disabling it permanently. We should save configuration. This will make configuration effective between reboots. We have different ways to accomplish this. All of them requires root privileges.
摆脱SELinux的最好方法是永久禁用它。 我们应该保存配置。 这将使配置在重新启动之间有效。 我们有不同的方法来实现这一目标。 所有这些都需要root特权。
Change SELINUX=enforcing
line in /etc/sysconfig/selinux
to the following.
SELINUX=enforcing
/etc/sysconfig/selinux
中的SELINUX=enforcing
行更改为以下内容。
SELINUX=disabled
翻译自: https://www.poftut.com/disable-selinux-temporarily-permanently-centos-rhel-fedora/
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。