博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
配置SELINUX
阅读量:5320 次
发布时间:2019-06-14

本文共 1187 字,大约阅读时间需要 3 分钟。

selinux的配置文件:

# more /etc/selinux/config

# This file controls the state of SELinux on the system.# SELINUX= can take one of these three values:#     enforcing - SELinux security policy is enforced.#     permissive - SELinux prints warnings instead of enforcing.#     disabled - No SELinux policy is loaded.SELINUX=enforcing# SELINUXTYPE= can take one of these two values:#     targeted - Targeted processes are protected,#     minimum - Modification of targeted policy. Only selected processes are protected. #     mls - Multi Level Security protection.SELINUXTYPE=targeted

查看selinux的状态:

# sestatusSELinux status:                 enabledSELinuxfs mount:                /sys/fs/selinuxSELinux root directory:         /etc/selinuxLoaded policy name:             targetedCurrent mode:                   permissiveMode from config file:          enforcingPolicy MLS status:              enabledPolicy deny_unknown status:     allowedMax kernel policy version:      28# getenforcePermissive

设置selinux:(这样修改后立即生效,重新系统后该配置取消)

# setenforce 1# getenforceEnforcing# setenforce 0# getenforcePermissive#

 

要想修改永久生效,直接修改配置文件/etc/selinux/config,然后重启系统。

转载于:https://www.cnblogs.com/abclife/p/4727185.html

你可能感兴趣的文章
SQL Server中利用正则表达式替换字符串
查看>>
leetcode Letter Combinations of a Phone Number
查看>>
MyEclipse中将普通Java项目convert(转化)为Maven项目
查看>>
node js 安装.node-gyp/8.9.4 权限 无法访问
查看>>
windows基本命令
查看>>
VMware中CentOS设置静态IP
查看>>
[poj1006]Biorhythms
查看>>
Hyper-V虚拟机上安装一个图形界面的Linux系统
查看>>
Hover功能
查看>>
js千分位处理
查看>>
Mac---------三指拖移
查看>>
字符串类型的相互转换
查看>>
HTTP状态码
查看>>
iOS如何过滤掉文本中特殊字符
查看>>
基础学习:C#中float的取值范围和精度
查看>>
javaagent 简介
查看>>
python升级安装后的yum的修复
查看>>
Vim配置Node.js开发工具
查看>>
web前端面试题2017
查看>>
ELMAH——可插拔错误日志工具
查看>>