SELinux 全称【安全增强型 Linux(Security-Enhanced Linux)】,它是一个 Linux 内核模块,也是 Linux 的一个安全子系统。SELinux 主要作用就是最大限度地减小系统中服务进程可访问的资源(最小权限原则)。
以 MongoDB 引发的 SELinux 异常为例:
当使用 systemctl 启动应用程序时,如果提示类似下图错误,则可能是由 SELinux 引起的安全策略问题。
SELinux 问题解决方案一(最安全,首选方案):
- 方法一
在运行程序(无论成功或者失败)后,SELinux 会生成 audit 日志,可以从日志中导出所有不符合策略,生成策略源文件和对应的编译文件,直接安装。操作如下:
[centos@host ~]$ journalctl -xe
# SELinux is preventing ...
# allow this access for now by executing:
# ausearch -c 'mongod' --raw | audit2allow -M my-mongod
# semodule -X 300 -i my-mongod.pp
[centos@host ~]$ sudo ausearch -c 'mongod' --raw | sudo audit2allow -M my-mongod
[centos@host ~]$ sudo semodule -X 300 -i my-mongod.pp
注意:这个过程需要反复若干次,因为安全策略问题只能发现一条解决后,才能发现另一条。
- 方法二
使用文本编辑器在创建 "my-mongod.te" 策略源文件,例如:
[centos@host ~]$ sudo gedit my-mongod.te
编写以下内容并保存:
module my-mongod 1.0;
require {
type mongod_t;
type cgroup_t;
class file { getattr open read };
}
#============= mongod_t ==============
#!!!! This avc is allowed in the current policy
allow mongod_t cgroup_t:file { getattr open read };
编译并安装策略文件:
[centos@host ~]$ sudo checkmodule -M -m -o my-mongod.mod my-mongod.te
[centos@host ~]$ sudo semodule_package -o my-mongod.pp -m my-mongod.mod
[centos@host ~]$ sudo semodule -X 300 -i my-mongod.pp
注意:这个方法一般在所有策略都已发现的情况下比较适用。
解决方案二(最有效,兜底方案):
第一步,临时关闭 SELinux。
[centos@host ~]$ sudo setenforce 0
第二步,修改 SELinux 配置文件,永久关闭 SELinux。
使用文本编辑器打开"/etc/selinux/config"文件:
[centos@host ~]$ sudo gedit /etc/selinux/config
将 "SELINUX" 参数设置为:"permissive" 或者 "disabled",并保存:
# enforcing - 表示启用 SELinux 安全策略。
# permissive - 表示启用 SELinux 安全策略,但不强制验证。如果执行第一步可以正常运行,则建议设置此值。
# disabled - 关闭 SELinux 安全策略,相当于没有安装 SELinux。
SELINUX=disabled
重启服务器:
[centos@host ~]$ sudo reboot
网友评论