开始-运行-cmd,输入netstat -ano即可看到所有端口占用情况。
加入要想知道谁占用了我们的端口8080,输入以下命令
C:\Documents and Settings\Administrator>netstat -aon|findstr "8080"
TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING 1596
端口被进程号为1596的程序占用
继续执行以下命令
C:\tasklist|findstr "1596"
thread.exe 2016Console 0 16064k
很清楚thread.exe占用了我们的端口,kill it
如果第二步找不到,打开任务管理器,直接找到进程号1596关闭他就可以了。
tomcat端口被占用,如何找出并kill,布布扣,bubuko.com
原文地址:http://blog.csdn.net/benjamin_whx/article/details/31374361