1.cmd窗口查看被占用的端口号:
netstat -ano | findstr 8080
windows下8080端口被占用解决方法
2.查看PID对应的进程
tasklist | findstr “pid”
windows下8080端口被占用解决方法
3.杀死占用的端口号:
taskkill /pid 8880 /f
windows下8080端口被占用解决方法
注意:其他端口号占用的处理方式一样。

相关文章:

  • 2021-07-28
  • 2021-05-08
  • 2021-10-11
  • 2021-09-23
  • 2021-05-12
  • 2021-08-04
  • 2022-12-23
  • 2021-12-09
猜你喜欢
  • 2021-05-10
  • 2021-11-03
  • 2021-06-16
  • 2022-01-23
  • 2021-10-20
相关资源
相似解决方案