📌  相关文章
📜  (OS 10048) 每个套接字地址(协议网络地址端口)通常只允许使用一次. : AH00072: make_sock: 无法绑定到地址 [::]:80 - 无论代码示例

📅  最后修改于: 2022-03-11 15:00:14.253000             🧑  作者: Mango

代码示例1
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.