### ubuntu 点击[xampp7.2.34官方下载地址](https://sourceforge.net/projects/xampp/files/XAMPP%20Linux/7.2.34/)或[团队文件服务器 密码yunzhi.club](http://nas.yunzhi.club:5010/sharing/dTeYhY2xt)打开下载页面,点击 ![](https://img.kancloud.cn/ed/4e/ed4e7f346b0d65bf1ee32cb802a7efc5_1016x163.png) 后将跳转到下载页面,下载成功后打开shell,并将目录定位到下载xampp的文件夹,先后执行如下命令: ```bash # 进入下载文件夹(此处为示例,具体请参考自己下载xampp的位置) # cd ~/Downloads # 文件给777,避免执行权限问题 # chmod 777 xampp-linux-x64-7.2.34-0-installer.run # sudo ./xampp-linux-x64-7.2.34-0-installer.run # 输入用户密码 ``` 接下来一路next(下一步): ![](https://img.kancloud.cn/d3/e1/d3e16088e1131640bcf894294e729305_504x430.png) ![](https://img.kancloud.cn/1d/dd/1dddf1e516740eef03fd534a5c86aa2b_499x427.png) ![](https://img.kancloud.cn/41/bf/41bfc29dde3732b147b53782faf828a4_500x428.png) ![](https://img.kancloud.cn/0a/be/0abe0736f8697ac864022149c2681871_499x429.png) ![](https://img.kancloud.cn/14/6a/146a557783274516b7d45679640f4ec1_500x427.png) ![](https://img.kancloud.cn/d4/09/d409846b50cb90d395f8c809f76848f7_503x430.png) ![](https://img.kancloud.cn/12/53/12533a7f9f03bb33010b17932a2557f1_497x429.png) 点击Finish后完成安装: ![](https://img.kancloud.cn/48/71/48715faa496d9a15bf3ac70e27fab828_670x463.png) 如果此时Apache服务处于Stopped状态,则需要选中其服务后,点击Start按钮: ![](https://img.kancloud.cn/89/57/8957ca8ae3db82125c9941115bc43ebc_670x470.png) 最后点击Go To Application验证xampp是否已成功启动 ![](https://img.kancloud.cn/2e/29/2e299082ee26d829013be8919d67e319_671x469.png) 此时如果我们安装了chrome等xampp可以识别的浏览器,浏览器将被自动启动,如未自动启动则需要手动打开浏览器输入`http://localhost:80`: ![](https://img.kancloud.cn/3c/fd/3cfdb659c3dcd2514c851ec3a5a34f5b_1126x617.png) #### 重新打开 ![](https://img.kancloud.cn/c0/a1/c0a12443b246528ece0b5eb60c3fa5b5_667x463.png) 停止服务后,点击软件右上角的X后即可关闭xampp。 重新打开则需要在shell中执行如下命令: ```bash # cd /opt/lampp # sudo ./manager-linux-x64.run ``` 系统将自动打开如下界面。 ![](https://img.kancloud.cn/48/71/48715faa496d9a15bf3ac70e27fab828_670x463.png) 如果此时Apache服务处于Stopped状态,则需要选中其服务后,点击Start按钮: ![](https://img.kancloud.cn/89/57/8957ca8ae3db82125c9941115bc43ebc_670x470.png) 没错,和安装其它软件没什么两样,就这么简单。 # 端口冲突 如果上述操作未能成功的启动xampp的apache服务,那么请继续阅读。如果已成功启动,请忽略以下内容。 如果你的计算机以前安装过其它的http软件,这很可能导致xampp无法正常启动,此时只需要更改下xampp中apache默认端口即可。 我们假设计算机的8080端口未被占用,下面介绍如何变更xampp(apache)的默认端口为8080的方法。 ![](https://img.kancloud.cn/fc/60/fc60bc4a84f2effb1ff14494f1d14f08_666x465.png) 选中Apache后点击Configure按钮 ![](https://img.kancloud.cn/f5/9f/f59f5b6a50811f162c8e85ddde9382f3_227x282.png) 变更该80为8080端口后点击OK。 ![](https://img.kancloud.cn/89/57/8957ca8ae3db82125c9941115bc43ebc_670x470.png) 然后再次启动apache服务。 ![](https://img.kancloud.cn/2e/29/2e299082ee26d829013be8919d67e319_671x469.png) 最后启动apache并打开地址[http://localhost:8080](http://localhost:8080),端口冲突解决。 ![](https://img.kancloud.cn/ee/e0/eee0bb9d0e9104efa655d9126aa2e93f_1041x616.png)