Windows 下端口占用

power Shell下运行
# 查看端口被占用的进程 # netstat -ano | findstr 8080
> netstat -ano | findstr 8080
  TCP    172.17.9.56:55125      121.51.73.100:8080     ESTABLISHED     12924

# 查看是什么应用占用端口 # tasklist | findstr 12924 
> tasklist | findstr 12924
WeChat.exe                   12924 Console                   16    202,320 K

# 杀死 进程
> taskkill /f /pid 12924 /t

你可能感兴趣的:(Windows 下端口占用)