禁用SELinux时配置错误导致Centos 不能够启动的一种解决方法

禁用SELinux时配置错误导致Centos 不能够启动的一种解决方法

我用的linux 版本是CentOS5.2,在安装nginx+php+mysql的时候,需要关闭SELinux,在修改配置文件/etc/selinux/config过程中,本 来应该设置:
# SELINUX=enforcing
SELINUX=disabled
但是我粗心大 意,设置了SELINUXTYPE参数:
#SELINUXTYPE=targeted
SELINUXTYPE=disabled

问题现象:

重启Centos的时候,提示:
unable to load selinux policy. machine is in enforcing mode. halting now. kernel panic-not syncing:attempted to kill init!

解 决方法:

系统启动的时候,按下‘e’键进入grub编辑界面,编辑grub菜单,选择“kernel /vmlinuz-2.6.23.1-42.fc8 ro root=/dev/vogroup00/logvol00 rhgb quiet” 一栏,按‘e’键进入编辑,在末尾增加enforcing=0,即:
kernel /vmlinuz-2.6.23.1-42.fc8 ro root=/dev/vogroup00/logvol00 rhgb quiet enforcing=0
按‘b’键继续引导,OK顺利前进。


你可能感兴趣的:(centos,centos,kernel,selinux,panic)