博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
apache 403 forbidden 错误解决方法
阅读量:6846 次
发布时间:2019-06-26

本文共 1119 字,大约阅读时间需要 3 分钟。

apache 403 forbidden 错误解决方法2008-08-25 15:33                                                            Selinux限制了访问。可以用

           # chcon -u system_u -t httpd_sys_content_t -R 目录
           为http访问增加权限

问 题的解决的办法是针对特定的目录和文件使用 chcon 来给文件贴个标签(这样说应该还算合适吧,正式的说法应该是 security context)。先用 ls -Z 看能正常访问的位置的文件和目录的标签,比如 /var/www 是 system_u:object_r:httpd_sys_content_t,然后使用

chcon -R -h -t httpd_sys_content_t

来贴标签。-R 是递归,-h 不跟随符号链接。这样 apache 应该就可以访问这个文件和目录了。vsftpd 的解决办法也是类似的。

比如:

           
           [root@monitor cci]# ls -Z /var/www/
           drwxr-xr-x root      root      system_u:object_r:httpd_sys_script_exec_t cgi-bin
           drwxr-xr-x root      root      system_u:object_r:httpd_sys_content_t error
           drwxr-xr-x root      root      system_u:object_r:httpd_sys_content_t html
           drwxr-xr-x root      root      system_u:object_r:httpd_sys_content_t icons
           drwxr-xr-x root      root      system_u:object_r:httpd_sys_content_t manual
           drwxr-xr-x webalize root      system_u:object_r:httpd_sys_content_t usage
           [root@monitor cc]# ls -Z /var/www/html/
           drwxr-xr-x root      root      root:object_r:root_t              cc
           -rw-r--r-- root      root      root:object_r:httpd_sys_content_t phptest.php
           [root@monitor cacti]# chcon -R -h -t httpd_sys_content_t /var/www/html/cc/

本文转自gaodi2002 51CTO博客,原文链接:http://blog.51cto.com/gaodi2002/1618155

转载地址:http://ghpul.baihongyu.com/

你可能感兴趣的文章
Oracle下sqlplus无法使用命令退格删除和历史记录的解决方法--使用rlwrap
查看>>
Centos 5.5 上面Wordpress平台搭建
查看>>
Cocos2d-x Eclipse下程序运行产生错误Effect initCheck() returned -1
查看>>
演示:穿越模式(在线模式)下基于思科Inline Interface Mode传感器的部署
查看>>
SQL Server 2012笔记分享-39:重建master数据库
查看>>
参加4.29首都网络安全日活动
查看>>
在iPad上使用Office 365
查看>>
十年IT运维谈(二)“0”和“100”
查看>>
poj3445
查看>>
[转]13个绚丽的Jquery 界面设计网站推荐
查看>>
艾伟_转载:ASP.NET MVC分页的实现
查看>>
C# 语音读取字符串
查看>>
css的一些操作
查看>>
SelectedValue与SelectedItem.Value的区别
查看>>
live555学习笔记8-RTSPClient分析
查看>>
QObject::sender() in a Q_PRIVATE_SLOT
查看>>
CString 和 char * 的相互转换
查看>>
UIApplicationDelegateDemo--应用程序前台、后台分析
查看>>
Get ip address from hostname in C using Linux sockets
查看>>
Webservice、缓存、Ajax总结
查看>>