windows 80端口占用
C:\>netstat -aon|findstr “80”
TCP 127.0.0.1:80 0.0.0.0:0 LISTENING 2448
看到了吗,端口被进程号为2448的进程占用,继续执行下面命令:
C:\>tasklist|findstr “2448”
thread.exe 2016 Console 0 16,064 K
很清楚吧,thread占用了你的端口,Kill it
如果第二步查不到,那就开任务管理器,看哪个进程是2448,然后杀之即可。 如果需要查看其他端口。把 80 改掉即可
Windows 下80端口被进程 System & PID=4 占用的解决方法
首先,打开 cmd 跑这一句,80 端口被System 占用,肯定是 HTTP 服务搞的鬼
netsh http show servicestate
得到使用 80 端口的 PID了
可能是SQL Server 或 IIS