Centos給文件設置了777權限仍不能訪問:linux
開啓了SELinux致使ci
1.查看SELinux狀態:
/usr/sbin/sestatus -v ##若是SELinux status參數爲enabled即爲開啓狀態
SELinux status: enabled
##也能夠用這個命令檢查getenforceget
2.關閉SELinux:
a.臨時關閉(不用重啓機器):
setenforce 0 ##設置SELinux 成爲permissive模式
b.臨時開啓(不用重啓機器):
setenforce 1 ##設置SELinux 成爲enforcing模式
c.修改配置文件須要重啓機器:
修改/etc/selinux/config 文件
將SELINUX=enforcing改成SELINUX=disabled
reboot重啓機器便可配置