redhat centos apache 403 错误 Forbidden You don't have permission to access / on this server(示例代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了redhat centos apache 403 错误 Forbidden You don't have permission to access / on this server(示例代码相关的知识,希望对你有一定的参考价值。

redhat centos apache 403 错误

    centos7 apache2.2.34源码包安装成功,确认进程已启动( ps -le | grep httpd) ,防火墙已关闭,但访问时报错:

Forbidden  You don‘t have permission to access / on this server

原因为:安装目录/conf/httpd.conf配置文件中

    User deamon

    Group deamon

选项没有修改,上述配置为默认配置,将其修改为

    User test(安装http的用户名)

    Group test (安装http的用户组名)

访问正常。


注:centos7 防火墙开启、关闭设置

systemctl stop firewalld.service #停止firewall,start 开启
systemctl disable firewalld.service #禁止firewall开机启动
firewall-cmd --state #查看默认防火墙状态(关闭后显示notrunning,开启后显示running)

以上是关于redhat centos apache 403 错误 Forbidden You don't have permission to access / on this server(示例代码的主要内容,如果未能解决你的问题,请参考以下文章

在 apache(centos 7)上运行烧瓶应用程序时被禁止 403

phpmyadmin 403 php 在 CentOS 7 Apache 上从 7.4 -> 7.3 降级后被禁止

Centos下Apache整合Tomcat访问报Forbidden 403 错误的解决方法

Linux中访问Apache报403错误处理方法

apache 403 forbidden怎么解决

记一次帮朋友解决apache站点403错误的过程