Ubuntu中用xampp搭建服务器时外网无法访问phpmyadmin的问题
Posted 石yingzhi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu中用xampp搭建服务器时外网无法访问phpmyadmin的问题相关的知识,希望对你有一定的参考价值。
Ubuntu中xampp一般安装在/opt/lampp/目录下,用[ip]/phpmyadmin访问若出现访问禁止,则可以通过修改一下配置文件解决
打开/opt/lampp/etc/extra/httpd-xampp.conf,找到
# since XAMPP 1.4.3
<Directory "/opt/lampp/phpmyadmin">
AllowOverride AuthConfig Limit
Require local
Require all granted
ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
</Directory>
添加红字部分,并用sudo /opt/lampp/xampp restart指令重启服务器即可
网上很多解答是说要用Allow from all,可能是环境不一样,这种方法在我这边并没有用
以上是关于Ubuntu中用xampp搭建服务器时外网无法访问phpmyadmin的问题的主要内容,如果未能解决你的问题,请参考以下文章