ubuntu – Xampp:我无法从localhost访问phpMyAdmin

我试图建立Xampp用于家庭开发.它已正确安装,我可以访问xampp页面,如演示,安全性,状态……甚至使用phytin-gui启动和停止服务器.

但是当使用’http://localhost/phpmyadmin‘访问PHPMyAdmin时,我得到了下一个错误

Access forbidden!

New XAMPP security concept:

Access to the requested directory is only available from the local network.

This setting can be configured in the file "httpd-xampp.conf".

我检查了我的httpd-xampp.conf,似乎是正确的.我试图改变拒绝全部为允许所有但不起作用.

我的主机文件将localhost指向127.0.0.1,这是访问所有xampp文件的预期.

我在ubuntu 12.04机器上运行XAMPP 1.8.1

有同样问题的人?我在网上搜索了近2个小时,但我发现的所有内容都是在尝试从其他网络或机器访问服务器时发生此错误.但对我来说,情况是我直接在服务器上工作,所以我认为我可以访问PHPMyAdmin认.

我的httpd-xampp.conf

#
# New XAMPP security concept
#
<LocationMatch "^/(?i:(?:xampp|security|licenses|PHPmyadmin|webalizer|server-status|server-info))">
    Order deny,allow
    Deny from all
    Allow from ::1 127.0.0.0/8 \
        fc00::/7 10.0.0.0/8 172.16.0.0/12 192.168.0.0/16 \
        fe80::/10 169.254.0.0/16

    ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
</LocationMatch>

解决方法

如果您在/ opt下安装了XAMPP,请转至/ opt / lampp / etc / extra目录,并编辑httpd-xampp.conf以添加Require all grant,如下所示:

# since XAMPP 1.4.3
<Directory "/opt/lampp/PHPmyadmin">
    AllowOverride AuthConfig Limit
    Order allow,deny
    Allow from all
    Require all granted
</Directory>

您可能必须通过运行/ opt / lampp / lampp restart重新启动LAMPP服务器.

相关文章

ubuntu退出redis的示例:指定配置文件方式启动源码redis:roo...
ubuntu中mysql改密码忘了的解决方法:1.在终端中切换到root权...
ubuntu安装mysql失败的解决方法原因:可能是原有的MySQL还有...
使用centos和ubuntu建站的区别有以下几点1.CentOS是Linux发行...
ubuntu图形界面和字符界面切换的方法:可以通过快捷键CTRL+A...
ubuntu中重启mysql失败的解决方法1.首先,在ubuntu命令行中,...