GH1995 / articles

blog
https://gh1995.github.io
2 stars 0 forks source link

windows trick #54

Open GH1995 opened 4 years ago

GH1995 commented 4 years ago

windows 查看端口占用

# 查找所有运行的端口
netstat -ano 
# 查看被占用端口对应的 PID
netstat -aon | findstr "8081"
# 查看指定 PID 的进程
tasklist | findstr "9088"
# 结束进程
taskkill /T /F /PID 9088