(OS 10048)Only one usage of each socket address (protocol/network address/port) is normally permitted. Windows apache

前端 未结 4 847
长发绾君心
长发绾君心 2021-01-18 23:25

When trying to execute httpd.exe on my windows server, I get this error:

(OS 10048)Only one usage of each socket address (protocol/network address/port)

4条回答
  •  轮回少年
    2021-01-18 23:58

    Confirm if some other process is already listening to Port 80.

    netstat -aon | findstr :80
    

    Since it is windows server there are chances to have IIS running by default.

    You will have to stop the website binded with port 80 from IIS Manager and then run httpd.exe again.

提交回复
热议问题