Spring启动遇到端口号被占用
程序员文章站
2022-05-30 21:19:53
...
遇到的问题,端口号8080被占用
Error starting ApplicationContext. To display the auto-configuration report re-run your application with 'debug' enabled.
2020-02-12 21:00:11.945 ERROR 13624 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter :
***************************
APPLICATION FAILED TO START
***************************
Description:
The Tomcat connector configured to listen on port 8080 failed to start. The port may already be in use or the connector may be misconfigured.
Action:
Verify the connector's configuration, identify and stop any process that's listening on port 8080, or configure this application to listen on another port.
解决:
- 打开cmd
- 找到8080端口的PID:netstat -aon|findstr “8080”
- 杀死进程:taskkill /pid 4432 -f
4. 查看进程
5. 重新启动,启动成功。
推荐阅读
-
解决xmapp中Apache端口号占用问题(Apache不能正常启动)
-
Linux MyEclipse启动Tomcat太慢内存和cpu被大量占用
-
Android开发中遇到端口号占用问题解决方法
-
80端口被system占用导致Apache无法启动的解决方法
-
80端口被Pid为4的未知程序占用导致Apache不能启动的解决方法
-
Win10系统80端口被System占用,Apache启动不了的解决方法
-
Spring Boot 在程序中获取启动端口号
-
解决xmapp中Apache端口号占用问题(Apache不能正常启动)
-
Spring Boot 项目 启动 端口经常被占用 彻底解决方案
-
Linux MyEclipse启动Tomcat太慢内存和cpu被大量占用