分类: LINUX
2012-01-05 23:52:32
01 | 1、快速关闭SElinux,使用如下命令就可以: |
02 |
03 | /usr/sbin/setenforce 0 立刻关闭 SELINUX |
04 | /usr/sbin/setenforce 1 立刻启用 SELINUX |
05 |
06 | 2、加到系统默认启动里面 |
07 |
08 | echo "/usr/sbin/setenforce 0" >> /etc/rc.local |
09 |
10 | 3、可以编辑配置文件达到同样的目的 |
11 |
12 | vi /etc/selinux/conf |
13 | set SELINUX=disabled |