禁止:您无权访问此服务器上的/ phpmyadmin
嗨,我已经在我的centos机器上安装了phpmyadmin,当我尝试phpmyadmin
通过浏览器访问时,出现此错误:
ForbiddenYou don't have permission to access `phpmyadmin` on this server.
我的phpmyadmin.conf
文件包含以下内容:
# 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
Alias /phpmyadmin /usr/share/phpMyAdmin
<Directory /usr/share/phpMyAdmin/>
<IfModule mod_authz_core.c>
# Apache 2.4
<RequireAny>
Require ip 127.0.0.1
Require ip ::1
</RequireAny>
</IfModule>
<IfModule !mod_authz_core.c>
# Apache 2.2
Order Deny,Allow
Deny from All
Allow from 127.0.0.1
Allow from ::1
</IfModule>
</Directory>
<Directory /usr/share/phpMyAdmin/setup/>
<IfModule mod_authz_core.c>
# Apache 2.4
<RequireAny>
Require ip 127.0.0.1
Require ip ::1
</RequireAny>
</IfModule>
<IfModule !mod_authz_core.c>
# Apache 2.2
Order Deny,Allow
Deny from All
Allow from 127.0.0.1
Allow from ::1
</IfModule>
</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>
请帮助我解决此问题。任何线索表示赞赏。
谢谢
回答:
您需要执行以下步骤:
查找以下内容的行
Require ip 127.0.0.1
替换为您的工作站IP地址:
Require ip 10.1.3.53
再次找到以下行:
Allow from 127.0.0.1
替换为:
Allow from 10.1.3.53
还要deny from all
在整个文件中找到并注释它。
保存并关闭文件。Restart Apache httpd server
:
# service httpd restart
编辑:由于这是选定的答案,并获得最佳可见性…请还请 ,否则会出现相同的Forbidden
错误。
以上是 禁止:您无权访问此服务器上的/ phpmyadmin 的全部内容, 来源链接: utcz.com/qa/404236.html