xampp啟動時顯示的錯誤
xampp啟動時顯示的錯誤為:
9:52:41 [Apache] Attempting to start Apache app...
9:52:41 [Apache] Status change detected: running
9:52:42 [Apache] Status change detected: stopped
9:52:42 [Apache] Error: Apache shutdown unexpectedly.
9:52:42 [Apache] This may be due to a blocked port, missing dependencies,
9:52:42 [Apache] improper privileges, a crash, or a shutdown by another method.
9:52:42 [Apache] Check the "/xampp/apache/logs/error.log" file
9:52:42 [Apache] and the Windows Event Viewer for more clues
這個問題比較常見, 通常是80、443端口被占用
cmd 通過運行apache/bin/httpd.exe 打印如下log:
(OS 10048)通常每個套接字地址(協議/網絡地址/端口)只允許使用一次。 : make_sock: could not bind to address 0.0.0.0:443
或者後面是80端口被占用
(OS 10048)通常每個套接字地址(協議/網絡地址/端口)只允許使用一次。 : make_sock: could not bind to address 0.0.0.0:80 或[ : : ]:80
一、最快的處理方法就是修改端口號:
1、443端口被占用,apache無法監聽443端口,該如何解決呢?
在/xampp/apache/conf/extra/httpd-ssl.conf
把Listen 443 修改為 444(可自定義)
xampp啟動時顯示的錯誤