How to disable selinux without restart server
Check selinux status
[[email protected] ~]# sestatus
SELinux status: enabled
SELinuxfs mount: /selinux
Current mode: enforcing
Mode from config file: enforcing
Policy version: 24
Policy from config file: targeted
[[email protected] ~]#
[[email protected] ~]# getenforce
Enforcing
[[email protected] ~]#
Change selinux to permissive[[email protected] ~]# setenforce 0
[[email protected] ~]# sestatus
SELinux status: enabled
SELinuxfs mount: /selinux
Current mode: permissive
Mode from config file: enforcing
Policy version: 24
Policy from config file: targeted
[[email protected] ~]# getenforce
Permissive
[[email protected] ~]#
If you want selinux status change persistent, open selinux configuration as shown bellow and change selinux config SELINUX=enforcing from enforcing to permissive or disable[[email protected] ~]# 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 these two values:
# targeted - Targeted processes are protected,
# mls - Multi Level Security protection.
SELINUXTYPE=targeted
[[email protected] ~]#
Tidak ada komentar :
Posting Komentar