安装xampp不能启动apache

来源:互联网 发布:python 元组修改 编辑:程序博客网 时间:2024/06/05 01:08

问题日志:
无法启动apache,显示的log为:

20:16:09 [Apache] Error: Apache shutdown unexpectedly.
20:16:09 [Apache] This may be due to a blocked port, missing dependencies,
20:16:09 [Apache] improper privileges, a crash, or a shutdown by another method.
20:16:09 [Apache] Press the Logs button to view error logs and check
20:16:09 [Apache] the Windows Event Viewer for more clues
20:16:09 [Apache] If you need more help, copy and post this
20:16:09 [Apache] entire log window on the forums
思路方向:
我建议首先 运行在cmd中运行 (安装目录)apache/bin/httpd.exe
通过运行apache/bin/httpd.exe 打印如下log:
(OS 10048)通常每个套接字地址(协议/网络地址/端口)只允许使用一次。 : make_sock: could not bind to address 0.0.0.0:443

也就是443端口被占用,apache无法监听443端口,该如何解决呢?
解决方案
最直接的方法是关闭占用443端口的进程:
1. netstat -ano 看看 443端口被占用没 –这里端口被占用
2.通过cmd中打印tasklist,查找占用443端口的进程。
3.用taskkill /pid 进程id /f 命令杀掉此进程,XAMPP重启apache即可。

0 0