转自:http://blog.youkuaiyun.com/lhshaoren/article/details/8952422
无法启动apache,显示的log为:
20:41:12 [Apache] Error: Apache shutdown unexpectedly.
20:41:12 [Apache] This may be due to a blocked port, missing dependencies,
20:41:12 [Apache] improper privileges, a crash, or a shutdown by another method.
20:41:12 [Apache] Check the "/xampp/apache/logs/error.log" file
20:41:12 [Apache] and the Windows Event Viewer for more clues
查了一下 通常是80端口 但是也需要别的端口的
通过运行apache/bin/httpd.exe 打印如下log:
(OS 10048)通常每个套接字地址(协议/网络地址/端口)只允许使用一次。 : make_sock: could not bind to address 0.0.0.0:443
20:41:12 [Apache] Error: Apache shutdown unexpectedly.
20:41:12 [Apache] This may be due to a blocked port, missing dependencies,
20:41:12 [Apache] improper privileges, a crash, or a shutdown by another method.
20:41:12 [Apache] Check the "/xampp/apache/logs/error.log" file
20:41:12 [Apache] and the Windows Event Viewer for more clues
查了一下 通常是80端口 但是也需要别的端口的
通过运行apache/bin/httpd.exe 打印如下log:
(OS 10048)通常每个套接字地址(协议/网络地址/端口)只允许使用一次。 : make_sock: could not bind to address 0.0.0.0:443
也就是443端口被占用,apache无法监听443端口,该如何解决呢?
由于装了IIS,Xampp不能用了。原因是:iis占用了xampp需要的80、443端口。Xampp要修改两个地方才能启动Apache。不然就把模块Mod_SSL注释掉。就可以不用理443这个了。
XAMPP修改80和443端口
在启动XAMPP时,如果报80/443端口被占,可以修改此软件的端口
打开C:\Program Files\xampp\apache\conf\httpd.conf文件把80修改为8080;
打开C:\Program Files\xampp\apache\conf\extra\httpd-ssl.conf文件把443全部替换为4433或者关闭SSL扩展;
可以在命令行下输入“netstat -nab”查看当前端口使用情况.