当前位置:   article > 正文

SpringBoot项目启动提示端口号占用

SpringBoot项目启动提示端口号占用

Windows环境下,SpringBoot项目启动时报端口号占用:

***************************
APPLICATION FAILED TO START
***************************

Description:

Web server failed to start. Port 8080 was already in use.

Action:

Identify and stop the process that's listening on port 8080 or configure this application to listen on another port.
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

于是换个端口号试试,还是提示占用。

通过netstat查看当前端口号并没有被占用啊,那可能是使用了系统保留端口,通过 netsh interface ipv4 show excludedportrange protocol=tcp查看:

协议 tcp 端口排除范围
开始端口    结束端口
----------    --------
      7681        7780
      7781        7880
      7900        7999
      8000        8099
      8100        8199
      8200        8299
      8300        8399
     50000       50059
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

方法:
1、换个端口(不在系统保留端口的范围)
2、关闭hyper-v

参考:
https://developer.aliyun.com/article/977707

https://www.jianshu.com/p/5ad2c9f0c969

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/707106
推荐阅读
相关标签
  

闽ICP备14008679号