大家好,又见面了,我是你们的朋友全栈君。
centos 7关闭selinux
- 查看SELinux状态:
getenforce
- 临时设置SeLinux:
setenforce 0
- 永久修改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
# 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
修改SELINUX=enforcing
为SELINUX=disabled
发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/126469.html原文链接:https://javaforall.net