centos的/etc/sysconfig/selinux
修改檔案/etc/sysconfig/selinux:
# 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 - selinux is fully disabled.
selinux=enforcing
# selinuxtype= type of policy in use. possible values are:
# targeted - only targeted network daemons are protected.
# strict - full selinux protection.
selinuxtype=targeted
把 selinux設定為disable, 下次啟動系統後將會停止selinux。
linux核心引數(kernel parameter)
或者可以在核心引數後加上: selinux=0 (停止) 或 selinux=1 (開啟)引數
檔案/boot/grub/menu.lst
title fedora core (2.6.18-1.2798.fc6)
root (hd0,0)
kernel /vmlinuz-2.6.18-1.2798.fc6 ro root=label=/ rhgb quiet selinux=0
initrd /initrd-2.6.18-1.2798.fc6.img
檢查selinux現時況態
要知到你現在是否使用 selinux:
# getenforce
enforcing
注:setenforce是切換selinux的模式(enforcing和permissive,都是在開啟狀態),而不能設定selinux是開啟還是關閉。
如何檢視,關閉和開啟selinux
以下介紹一下selinux相關的工具 usr bin setenforce 修改selinux的實時執行模式 setenforce 1 設定selinux 成為enforcing模式 setenforce 0 設定selinux 成為permissive模式 如果要徹底禁用selinux 需要在 e...
linux中如何關閉 開啟SElinux
1 檢視核心 系統版本 root virtualboxcentos7 test hostnamectl static hostname virtualboxcentos7 icon name computer vm chassis vm machine id e8d08b54fc55254aaefd...
selinux 開啟和關閉
對於新手來說,linux的selinux困擾了一大批學員,開啟後,導致檔案許可權修改不了等問題,下面就是關閉設定setlinux的方法 檢視selinux狀態 1 usr sbin sestatus v 如果selinux status引數為enabled即為開啟狀態 selinux status ...