# 查找所有运行的端口 netstat -ano # 查看被占用端口对应的 PID netstat -aon|findstr "8080"
taskkill /T /F /PID 9088
lsof -i :8080
kill 9527