SELinux(Security-Enhanced Linux) 是美國國家安全局(NSA)對于強制訪問控制的實現(xiàn),是 Linux歷史上最杰出的新安全子系統(tǒng)。
臨時生效:
命令臨時生效: setenforce 0 (臨時生效可以直接用setenforce 0 ) 1 啟用 0 告警,不啟用
永久生效:
# 操作前先備份 cp /etc/selinux/config /etc/selinux/config.bak cat /etc/selinux/config # 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. # 更改setlinux級別 sed -i 's/SELINUX=enforcing/\SELINUX=permissive/' /etc/selinux/config ==> vim /etc/selinux/config/ --> SELINUX=enforcing[效果同上] # SELINUX參數(shù)enforcing代表打開,disabled代表關(guān)閉 # 查看selinux狀態(tài): getenforce
posted @ 2018-07-07 15:59小a玖拾柒 閱讀(...) 評論(...) 編輯
上一個教程:Tom-shushu
下一個教程:linux命令行打包、壓縮及解壓縮