windows 端口被占用问题
在windows命令行窗口下执行:
C:\>netstat-aon|findstr"80"
TCP127.0.0.1:800.0.0.0:0LISTENING2448
看到了吗,端口被进程号为2448的进程占用,继续执行下面命令:
C:\>tasklist|findstr"2448"
thread.exe2016Console016,064K
很清楚吧,thread占用了你的端口,Killit
在windows命令行窗口下执行:
C:\>netstat-aon|findstr"80"
TCP127.0.0.1:800.0.0.0:0LISTENING2448
看到了吗,端口被进程号为2448的进程占用,继续执行下面命令:
C:\>tasklist|findstr"2448"
thread.exe2016Console016,064K
很清楚吧,thread占用了你的端口,Killit