Solve the problem that port 80 is occupied in windows system

From: Solve the problem that port 80 of the Windows system is occupied

Solve the problem that port 80 is occupied in windows system
Deploying a web application (port 80) under Windows, it prompts that bind 80 port fails when starting
Check port occupancy:

netstat -ano | findstr 0.0.0.0:80
It is found that the System process (pid=4) occupies the port

However, IIS is not installed on this machine, so the problem of IIS service is ruled out.
 
Solution
run cmd as administrator
 
net stop http //Stop the system http service
sc config http start= disabled //Disable the automatic startup of the service, here note that the space after the equal sign is indispensable

  

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325987123&siteId=291194637