端口
Windows
查看端口占用
# 查找所有运行的端口 netstat -ano # 查看被占用端口对应的 PID netstat -aon|findstr "8080"
结束进程
taskkill /T /F /PID 9088
macOS
查看端口占用
lsof -i :8080
结束进程
kill 9527
端口.txt · 最后更改: 2021/07/16 11:43 由 admin
# 查找所有运行的端口 netstat -ano # 查看被占用端口对应的 PID netstat -aon|findstr "8080"
taskkill /T /F /PID 9088
lsof -i :8080
kill 9527