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

标签 php apache phpmyadmin centos vps

我已经安装了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/

相关文章:

php - 如何使用php命令行定义多个ini设置?

php - 从 php 运行 excel 公式

apache - 使用 .htaccess 在主页 index.php 上强制 SSL 除外

Apache - 在没有安全警报的情况下将 https 重定向到不同的域

java - 使用 Apache FTPClient 通过代理连接到 FTP 服务器

php - Objective-C 默认参数值

php - 如何将变量设置为 $result 中的电子邮件列?

mysql - 让开发 MySQL 数据库重新上线的技巧?

python - 为什么我的代码不能在 python 中运行这段代码?

mysql - 通过本地 phpMyAdmin 的 Google Cloud SQL 实例