2013-07-19 87 views
0

當我執行:阿帕奇make_sock:無法綁定到地址[::]:8989

service httpd start, 

我得到這個錯誤

httpd:(98)Address already in use: make_sock: could not bind to address [::]:8989 
(98)Address already in use: make_sock: could not bind to address 0.0.0.0:8989 
no listening sockets available, shutting down 
Unable to open logs 

在httpd.conf,它是Listen 8989。當我更改爲Listen *:8989時,它可以工作。爲什麼?怎麼了?

回答

0

東西正在使用端口8989.可能是Apache本身的以前的實例。

在你的shell/CMD輸入

的Windows:(您可能需要以管理員身份運行)

netstat -anb 

的Linux:

sudo netstat -tulpn 

順便說一句,你有多個Listen指令httpd.conf?確保你有一個。