80端口被system占用解决方法:
1、首先,讲一下如何查找端口占用。
netstat -ano findstr ":80 "
tasklist /fi "PID eq 4"
2、在上图中,我们发现80端口被System占用了。
我们在运行中输入regedit打开注册表。
3、找到 HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\HTTP
4、找到项Start,将其值改为0
5、重启系统,System进程就不会占用80端口了。
可以使用步骤1进行测试。
……