您的位置:首页 > 运维架构 > Apache

XAMPP apache端口占用问题的解决

2017-08-17 11:12 417 查看
前几天用XAMPP的时候突然报了下面的错误,没办法启动。

错误:

17:05:33  [Apache] Error: Apache shutdown unexpectedly.
17:05:33  [Apache] This may be due to a blocked port, missing dependencies,
17:05:33  [Apache] improper privileges, a crash, or a shutdown by another method.
17:05:33  [Apache] Check the "/xampp/apache/logs/error.log" file
17:05:33  [Apache] and the Windows Event Viewer for more clues
1
2
3
4
5


1
2
3
4
5
其实这个问题就是端口被占用了,下面是修改方法

自己修改两个端口:

1.到这个目录下\ xampp\apache\conf ,打开httpd.conf,将里边的80端口全部改成一个未被占用的端口,比如8001

2.到这个目录 \ xampp\apache\conf\extra ,打开httpd-ssl.conf ,将文件里的443端口全部换成一个未被占用的端口,比如4431

我将端口修改之后,端口冲突的问题就解决了,希望对大家有所帮助~

http://blog.csdn.net/sunmc1204953974/article/details/50423671
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  apache 端口