【转自mos文章】检查selinux状态的方法

检查selinux状态的方法:

来源于:
How to Check whether SELinux is Enabled or Disabled (文档 ID 432988.1)

selinux 有3种模式:
Enforcing (or known as enabled), Disabled or Permissive.

Permissive mode loads the SELinux software, but doesn‘t enforce the rules, only logging is performed.

可以使用如下的命令来检查selinux的状态:

[root@servera ~]# uname -a
Linux servera 2.6.18-308.el5 #1 SMP Fri Jan 27 17:17:51 EST 2012 x86_64 x86_64 x86_64 GNU/Linux
[root@servera ~]# sestatus
SELinux status:                 disabled
[root@servera ~]# getenforce
Disabled
[root@servera ~]#

若是放在程序中判断selinux的状态,请使用如下的命令:

[root@servera ~]# /usr/sbin/selinuxenabled; if [ $? -ne 0 ]; then echo "DISABLED"; else echo "ENABLED"; fi
DISABLED

 

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。