netstat -ano命令是用来找到所有被占用的端口号的
netstat -ano
netstat -ano|findstr "8089"命令是用来找到被8089所占用的PID和其他信息 我们发现被占用的pid为4076
netstat -ano|findstr "8089"
其中tasklist|findstr "4076"是找到PID为4076的进程程序,发现占用的程序是tomcat8.exe
tasklist|findstr "4076"
最后使用taskkill /f /t /im tomcat8.exe终止tomcat的进程
taskkill /f /t /im tomcat8.exe
如何找到被占用的端口号并杀死进程
原文:https://www.cnblogs.com/April-1/p/15236658.html