Skip to content
文章目录

win处理端口占用

查找占用端口的进程

netstat -aon | findstr "端口号"

根据 PID 强制杀死进程

taskkill -PID 找到的pid -F