zoukankan      html  css  js  c++  java
  • selinux操作

    setenforce 0 关闭SELinux

    setenforce 1 临时打开SELinux

    getenforce 查看SELinux状态

    永久关闭SELinux :

    # cat /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:
    # default - equivalent to the old strict and targeted policies
    # mls     - Multi-Level Security (for military and educational use)
    # src     - Custom policy built from source
    #SELINUXTYPE=default
    #SELINUXTYPE=ubuntu
    SELINUXTYPE=g6s-policy
    
    # SETLOCALDEFS= Check local definition changes
    SETLOCALDEFS=0
    
    上面改为SELINUX=disabled  #可以关闭selinux,免得每次启动都要setenforce 0关闭selinux

    查看selinux策略

    # sestatus
    SELinux status:                 enabled         若上面将SELINUX改为disabled,这里就是disabled,getenforce也是
    SELinuxfs mount:                /sys/fs/selinux
    SELinux root directory:         /etc/selinux    相关的配置等文件会放在这里面
    Loaded policy name:             my-policy
    Current mode:                   enforcing
    Mode from config file:          enforcing
    Policy MLS status:              disabled
    Policy deny_unknown status:     denied
    Memory protection checking:     actual (secure)
    Max kernel policy version:      31
  • 相关阅读:
    简单的语句统计所有用户表尺寸大小
    CodeSmith 介绍
    Oracle Partition By 的使用
    Oracle Contact By的使用
    正则提取 html 里<input> 标记的value 值
    IOS 7 风格Checkbox
    aspose words 介绍
    大规模web 服务开发技术
    数学之美 读后感
    工作流简介--(转)
  • 原文地址:https://www.cnblogs.com/hellokitty2/p/10088128.html
Copyright © 2011-2022 走看看