如何在linux服务器上安装xampp

如何在linux服务器上安装xampp,第1张

1.从Xampp官网下载对应的Linux版本安装包

2.使用X-shell 连接云服务器

3.执行rz,选中已经下好的安装包,等待上传完毕

4.上传完毕,后发现当前目录下(及执行rz命令的目录下)多了xampp-linux-x64-5.6.28-0-installer.run

5.将安装包改为可执行文件,chmod +x xampp-linux-x64-5.6.28-0-installer.run

6. 使用 ./xampp-linux-x64-5.6.28-0-installer.run 进行安装 ,一直y直到安装结束

7. cd /opt/lampp

8. ./ctlscript.sh start 开启服务

9. http://你的云服务器ip/phpmyadmin 会发现如何的错误

下面谈谈如何解决这个错误

经过一番搜索与尝试

1。vim /opt/lampp/etc/extra/httpd-xampp.conf

2。将Directory的内容改为如下

<Directory "/opt/lampp/phpmyadmin">

AllowOverride AuthConfig Limit

#Require local

Order allow,deny

Allow from all

Require all granted

ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var

</Directory>

<Directory "/opt/lampp/phpsqliteadmin">

AllowOverride AuthConfig Limit

#Require local

ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var

</Directory>12345678910111213141234567891011121314

3。./ctlscript.sh restart 重启服务

现在就可以使用 http://你的云服务器ip/phpmyadmin进行访问了

安装XAMPP启动apache 和mysql后, 服务器就运行了。在浏览器中输入localhost就可以看到xampp的欢迎界面。

下载一个简单的php文件

或者用任何编辑器保存以下代码

<html>

<body>

<?php

echo "Hello World"

?>

</body>

</html>

保存在XAMPP的htdocs文件夹下,比如test.php

然后在浏览器中输入http://localhost/test.php

就可以看到hello world了。注意文件夹名字htdocs不用输入。


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/404972.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-05-21
下一篇2023-05-21

发表评论

登录后才能评论

评论列表(0条)

    保存