您好,登錄后才能下訂單哦!
如何解決Apache shutdown unexpectedly啟動錯誤的問題?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
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(可自定義)
2、80端口被占用,apache無法監聽80端口,該如何解決呢?
在/xampp/apache/conf/extra/httpd.conf
把Listen 80 修改為 88 (可自定義)
如果配置了vhosts的話請把httpd-vhosts.conf 中端口改為88(同上端口號)
二、最直接的方法是關閉占用80、443端口的進程:
1.通過cmd中netstat -ano 看看本機80、 443端口被占用沒 ----- --這里 可能會被其他程序占用如iis、虛擬機等
2.通過cmd中打印tasklist,查找占用80、443端口的進程名稱。
3.taskkill /pid 端口號 殺掉此進程名稱,XAMPP重啟apache即可。
綜上所述第一種方法推薦使用,第二種每次啟動都或多或少的再次遇到。
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。