apache 80端口占用問題
今天安裝mongodb後發現apache無法啟動
命令行 services.msc 打開服務
在服務裏啟動Apache2a服務,報錯誤碼1
網上查有很多情況都報的1
可以通過命令行下 執行apache bin 下的 httpd.exe進一步了解
AH00548: NameVirtualHost has no effect and will be removed in the next release D:/phpStudy/Apache/conf/extra/httpd-vhosts.conf:34
(OS 10013)以一種訪問權限不允許的方式做了一個訪問套接字的嘗試。 : AH00072: make_sock: could not bind to address [::]:80
(OS 10013)以一種訪問權限不允許的方式做了一個訪問套接字的嘗試。 : AH00072: make_sock: could not bind to address 0.0.0.0:80
AH00451: no listening sockets available, shutting down
AH00015: Unable to open logs
看到這裏估計是80端口被占用了,我之前也有一次遇到過80被System占用,後來通過修改httpd.conf裏的監聽端口解決
通過命令行 netstat -ano|findstr 80 查看占用的pid 為4
通過tasklist 顯示所有進程
System 4 Services 0 108 K
果然還是System占用,這次必須解決,通過查看資料了解到System一般為SQL Server Reporting Services (MSSQLSERVER)這個服務
直接去服務裏禁用它,apache成功開啟
apache 80端口占用問題