SELinux is preventing /usr/sbin/httpd from write access on the directory view

部署Apache环境:目录权限设置 777,CMS 仍然提示 无法写入目录。
然后偶然发现一个提示信息:
“SELinux is preventing /usr/sbin/httpd from write access on the directory view”,参考该文章得知是Linux平台下的httpd一个bug。
执行命令:
ls -LZ 查看
发现 “httpd_sys_content_t” 字段
SELinux is preventing /usr/sbin/httpd from write access on the directory view_第1张图片

修复bug:
chcon -R -t httpd_sys_rw_content_t ./*

然后再次执行 ls -LZ
字段变为:
“httpd_sys_rw_content_t” 即可。

你可能感兴趣的:(betterfloor)