關閉SELinux的方法:
修改/etc/selinux/config文件中的SELINUX="" 為 disabled ,然后重啟。
如果不想重啟系統(tǒng),使用命令setenforce 0
注:
setenforce 1 設置SELinux 成為enforcing模式
setenforce 0 設置SELinux 成為permissive模式
在lilo或者grub的啟動參數中增加:selinux=0,也可以關閉selinux
#---------------------------------------------------------------
查看selinux狀態(tài):
/usr/bin/setstatus -v
如下:
SELinux status: enabled
SELinuxfs mount: /selinux
Current mode: permissive
Mode from config file: enforcing
Policy version: 21
Policy from config file: targeted
getenforce/setenforce查看和設置SELinux的當前工作模式
#-----------------------------------------------------------------------
發(fā)現服務一啟動,馬上停止,在網上查找資料,找到安裝時要先禁用SELinux,再安裝MySQL,步驟是:
1. 關閉SELinux,重啟系統(tǒng);
2. 安裝MySQL(MySQL server應該可以啟動了);
3. 啟用SELinux,重啟系統(tǒng),之后MySQL server就可以正常啟動了。
啟用禁用SELinux的方法是:
vi /etc/selinux/config(也有人說是/etc/sysconfig/selinux文件,其實兩個之間是鏈接關系,隨便改其中一個,另一個也改了)
SELINUX=disable 禁用SeLinux
SELINUX=enforcing 啟用SeLinux