window下查看端口号,并删除对应进程
2021-01-28 18:16
标签:kill taskkill console 查看 tst 查看端口 code win window window下查看端口号,并删除对应进程 标签:kill taskkill console 查看 tst 查看端口 code win window 原文地址:https://www.cnblogs.com/ljyyjj/p/11882391.html
netstat -aon
:
netstat -aon|findstr 8080
:
TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING 9788
//TCP 8080:端口号 PID:进程标识码 9788
tasklist|findstr 9788
:
node.exe 9788 Console 1 425,576 K
TASKKILL /F /PID 9788
成功: 已终止 PID 为 9788 的进程。
下一篇:vue.js与webapi
文章标题:window下查看端口号,并删除对应进程
文章链接:http://soscw.com/index.php/essay/48344.html