在全新的windows10操作系統(tǒng)中安裝XAMPP之后,發(fā)現(xiàn)電腦會(huì)出現(xiàn)apache無法啟動(dòng)的問題,并且還會(huì)返回類似于下面的錯(cuò)誤信息具體現(xiàn)象如下所示:
錯(cuò)誤信息:
9:52:41 AM [Apache] This may be due to a blocked port, missing dependencies, 9:52:41 AM [Apache] improper privileges, a crash, or a shutdown by another method.9:52:41 AM [Apache] Press the Logs button to view error logs and check9:52:41 AM [Apache] the Windows Event Viewer for more clues9:52:41 AM [Apache] If you need more help, copy and post this9:52:41 AM [Apache] entire log window on the forums
解決方法:
1、點(diǎn)擊XAMPP右側(cè)的Netstat按鈕,看一下是不是有哪個(gè)程序正在使用80或者443端口。在我的例子當(dāng)中,可以看到443端口沒有被占用,而80端口被系統(tǒng)占用;
2、在安裝文件夾下面找到..\XAMPP\apache\conf\,并在這個(gè)目錄下的httpd.conf 文件中 所有80換成82或其他未被占用的端口。該文件總共有三處提到了80端口,全部改成82(或其他你選擇的端口)。
3、(本步并非所有人都需要)有的同學(xué)如果已經(jīng)修改過httpd-vhosts文件,那么還需要在...\XAMPP\apache\conf\extra\ 這個(gè)路徑中找到 httpd-vhosts.conf,把80端口也全部改成82或其他端口。
443端口被占用:
1、如果443端口也被占用,打開安裝路徑下...\xampp\apache\conf\extra 下的httpd-ssl.conf文件,將Listen 443這句注釋掉:添加“#”變?yōu)?ldquo;# Listen 443”,或?qū)?43改為其他未被占用的端口,例如4433
2、再次回到XAMPP的主界面,啟動(dòng)apache,這次應(yīng)該就能順利運(yùn)行。
以上就是對(duì)windows10系統(tǒng)安裝XAMPP后apache無法啟動(dòng)的解決方法的介紹,方法很簡單,有同樣問題的朋友可以按照上述的方法進(jìn)行解決!