1、查看所有的端口占用情况
netstat -ano
windows查看端口占用以及关闭相应的进程

2、查看指定端口的占用情况
netstat -aon|findstr “8088”
windows查看端口占用以及关闭相应的进程

3、查看PID对应的进程
tasklist|findstr “2016”
windows查看端口占用以及关闭相应的进程

4、结束该进程
taskkill /f /t /im tor.exe
windows查看端口占用以及关闭相应的进程

相关文章:

  • 2021-12-13
  • 2022-01-08
  • 2021-11-20
  • 2021-12-18
  • 2021-11-27
  • 2021-11-18
  • 2021-10-19
  • 2021-06-14
猜你喜欢
  • 2021-11-09
  • 2021-12-04
  • 2021-11-22
相关资源
相似解决方案