首页 > 代码库 > windows下Eclipse启动tomcat提示端口已被占用 already in use

windows下Eclipse启动tomcat提示端口已被占用 already in use

>netstat -ano | findstr 8009

 TCP    127.0.0.1:8005         0.0.0.0:0              LISTENING       2188


E:\eclipse_workspace\normandy>taskkill /PID 2188
错误: 无法终止 PID 为 2188 的进程。
原因: 只能强行终止这个进程(带 /F 选项)。


E:\eclipse_workspace\normandy>taskkill /F /PID 2188
成功: 已终止 PID 为 2188 的进程。