默认装完CentOS,Selinux是打开的,这个你基本都是需要关闭,否则你基本没法玩。查看当前selinux的状态。
刚好手工装完一台CentOS6.4,就顺便记录一下。
# sestatus SELinux status: enabled SELinuxfs mount: /selinux Current mode: enforcing Mode from config file: enforcing Policy version: 24 Policy from config file: targeted
你可以运行下面命令,马上禁用selinux
setenforce 0
这个时候你查看selinux的状态
# sestatus SELinux status: enabled SELinuxfs mount: /selinux Current mode: permissive Mode from config file: enforcing Policy version: 24 Policy from config file: targeted
对比一下,你就可以看出变化。
重启后,设置就失效。
如果你希望重启生效,那么你就需要修改配置文件
vi /etc/selinux/config
#SELINUX=enforcing SELINUX=disabled
或者你可以运行下面命令
sed -i '/SELINUX/s/enforcing/disabled/' /etc/selinux/config
这个时候,你重启机器,再查看selinux的状态
# sestatus SELinux status: disabled
转载自:linux基础:关闭Selnux:http://www.chenshake.com/linux-foundation-closing-selnux/
0 条评论。