码迷,mamicode.com
首页 > 系统相关 > 详细

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

时间:2015-04-06 01:06:06      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:

检查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

 

 

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

标签:

原文地址:http://blog.csdn.net/msdnchina/article/details/44894369

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!