gpt4 book ai didi

php - 您无权在 CentOS7 VPS 服务器中访问此服务器上的/phpMyAdmin

转载 作者:行者123 更新时间:2023-12-04 19:34:38 26 4
gpt4 key购买 nike

我已经安装了Apache , PHP , MariaDBPHPMyAdmin在我的VPS CentOS7 .但是当我访问 PHPMyAdmin

http://my-server-ip-here/phpMyAdmin 

它给出了这个错误:
Forbidden

You don't have permission to access /phpMyAdmin on this server.

我的配置, /etc/httpd/conf.d/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/>
AddDefaultCharset UTF-8

<IfModule mod_authz_core.c>
# Apache 2.4
<RequireAny>
Require ip my-server-ip-here
Require ip ::1
</RequireAny>
</IfModule>
<IfModule !mod_authz_core.c>
# Apache 2.2
Order Deny,Allow
# Deny from All
Allow from my-server-ip-here
Allow from ::1
</IfModule>
</Directory>

<Directory /usr/share/phpMyAdmin/setup/>
<IfModule mod_authz_core.c>
# Apache 2.4
<RequireAny>
Require ip my-server-ip-here
Require ip ::1
</RequireAny>
</IfModule>
<IfModule !mod_authz_core.c>
# Apache 2.2
Order Deny,Allow
#Deny from All
Allow from my-server-ip-here
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>

最佳答案

您需要在 phpMyAdmin.conf 的 Allow 部分下添加您的 IP 或范围,以便能够远程访问您的 phpMyAdmin。修改 httpd 后需要重启 phpMyAdmin.conf 服务。

如果您的 IP 是 123.456.789.1 那么:

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

<IfModule mod_authz_core.c>
# Apache 2.4
<RequireAny>
Require ip my-server-ip-here
Require ip ::1
Require ip 123.456.789.1 #add your IP
</RequireAny>
</IfModule>
<IfModule !mod_authz_core.c>
# Apache 2.2
Order Deny,Allow
# Deny from All
Allow from my-server-ip-here
Allow from ::1
Allow from 123.456.789.1 #add your IP
</IfModule>
</Directory>

关于php - 您无权在 CentOS7 VPS 服务器中访问此服务器上的/phpMyAdmin,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26762590/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com