今天用eclipse重启之后,启动项目报 tomcat 8080端口被占用的问题,就记录下来了
以下是解决过程:
window10:
1.win + x: cmd
查找占用8080的端口进程的pid
netstat -ano | findstr 8080,得出
TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING 11024
TCP [::]:8080 [::]:0 LISTENING 11024
查找进程,得出
tasklist /fi "pid eq 11024
映像名称 PID 会话名 会话# 内存使用
========================= ======== ================
javaw.exe 11024 Console 1 836,548 K
taskkill -f /PID 11024
成功: 已终止 PID 为 11024 的进程。
转载请注明原文地址: https://ju.6miu.com/read-1295279.html