标签:window 命令行 指定 占用 strong str 查询端口 netstat windows平台
两步方法 : 1 查询端口占用,2 强行杀死进程
netstat -aon|findstr "8080"
taskkill /pid 4136-t -f
2 .直接强制杀死指定端口
taskkill /pid 4136 -t -f
或者:
taskkill -f -pid 10384
Window 中杀死指定端口 cmd 命令行 taskkill
原文地址:https://www.cnblogs.com/hanxiaofei/p/13890732.html