CentOS下徹底刪除SELinux的方法
SELinux(Security-Enhanced Linux)安全增強式Linux,是一種強制訪問控制(mandatory access control)的實現。這這種控制下,linux有很多的操作是會被禁止或者是不成功的。之前在CentOS下安裝vsftpd怎樣都弄不上去。後來把selinux幹掉之後就完事了。好了,廢話少說,下面說一下徹底幹掉selinux的方法。
vim/etc/selinux/config
開啟selinux的配置檔案,我們可以看selinux是預設開啟的:
SELINUX=enforcing
所以我們要修改的就是這個了,把原來的註釋掉,自己寫上
SELINUX=disabled
具體如下:
# This file controls thestate of SELinux on the system.
# SELINUX= can take oneof these three values:
# enforcing - SELinux security policy isenforced.
# permissive - SELinux prints warningsinstead of enforcing.
# disabled - SELinux is fullydisabled.
#SELINUX=enforcing
SELINUX=disabled
# SELINUXTYPE= type ofpolicy in use. Possible values are:
# targeted - Only targeted network daemonsare protected.
# strict - Full SELinux protection.
SELINUXTYPE=targeted
儲存退出,然後重啟一下就ok了。