在ec2实例上访问phpMyAdmin时出现403错误 [英] 403 Error when accessing phpMyAdmin on an ec2 Instance

查看:66
本文介绍了在ec2实例上访问phpMyAdmin时出现403错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想遵循 amazon的教程.然后我想拥有phpMyAdmin,因此我使用sudo yum --enablerepo=epel install phpmyadmin安装了它,并创建了指向www目录sudo ln -s /usr/share/phpmyadmin /var/www/html/phpmyadmin的链接.

I wanted to install a LAMP environment on a new EC2 instance using Amazon-Linux following amazon's tutorial. Then I wanted to have phpMyAdmin so I installed it using sudo yum --enablerepo=epel install phpmyadmin and created a link to the www directory sudo ln -s /usr/share/phpmyadmin /var/www/html/phpmyadmin.

然后我更改了/etc/httpd/conf.d/phpMyAdmin.conf文件以允许访问.

Then I altered the /etc/httpd/conf.d/phpMyAdmin.conf file to allow access.

当前文件:

# phpMyAdmin - Web based MySQL browser written in php
# 
# Allows only localhost by default
#
# But allowing phpMyAdmin to anyone other than localhost should be considered
# dangerous unless properly secured by SSL

Alias /phpMyAdmin /usr/share/phpMyAdmin

<Directory /usr/share/phpMyAdmin/>
 AddDefaultCharset UTF-8

 Order allow,deny
 Allow from all
</Directory>

# These directories do not require access over HTTP - taken from the original
# phpMyAdmin upstream tarball
#
<Directory /usr/share/phpMyAdmin/libraries/>
    Order Deny,Allow
    Deny from All
    Allow from None
</Directory>

<Directory /usr/share/phpMyAdmin/setup/lib/>
    Order Deny,Allow
    Deny from All
    Allow from None
</Directory>

<Directory /usr/share/phpMyAdmin/setup/frames/>
    Order Deny,Allow
    Deny from All
    Allow from None
</Directory>

# This configuration prevents mod_security at phpMyAdmin directories from
# filtering SQL etc.  This may break your mod_security implementation.
#
#<IfModule mod_security.c>
#    <Directory /usr/share/phpMyAdmin/>
#        SecRuleInheritance Off
#    </Directory>
#</IfModule>

但是当我尝试访问/phpMyAdmin时,仍然出现403错误

But still I'm getting a 403 error, when I try to access /phpMyAdmin

error_log:

error_log:

[Thu Aug 27 13:45:47.702678 2015] [authz_core:error] [pid 25763] [client 37.49.61.176:59958] AH01630: client denied by server configuration: /usr/share/phpMyAdmin/
[Thu Aug 27 13:45:48.699611 2015] [authz_core:error] [pid 25763] [client 37.49.61.176:59958] AH01630: client denied by server configuration: /usr/share/phpMyAdmin/
[Thu Aug 27 13:49:22.181819 2015] [authz_core:error] [pid 25765] [client 37.49.61.176:60222] AH01630: client denied by server configuration: /usr/share/phpMyAdmin/

还有什么可能是错误的?

What else could be the error?

推荐答案

删除后此问题已解决

Alias /phpMyAdmin /usr/share/phpMyAdmin

来自

/etc/httpd/conf.d/phpMyAdmin.conf

然后不要忘记使用以下命令重新启动

And then don't forget to restart by using the following command

sudo service httpd restart

这篇关于在ec2实例上访问phpMyAdmin时出现403错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆