springboot项目启动控制台显示端口被占用解决方法
程序员文章站
2022-03-08 12:20:21
控制台启动报错: Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.2020-04-24 16:39:29.231 ERRO ......
控制台启动报错:
error starting applicationcontext. to display the conditions report re-run your application with 'debug' enabled.
2020-04-24 16:39:29.231 error 2864 --- [ restartedmain] o.s.b.d.loggingfailureanalysisreporter :
***************************
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.
,显示端口8080被占用
第一种解决方法,win+r 打开cmd ,输入命令 netstat -aon 查看进程,找到8080
输入命令格式:taskkill /t /f /pid 进程id,杀掉8080进程,比如:taskkill /t /f /pid 6736
第二种方法:修改配置文件端口,比如改为8081,8082
这样是很不方便,每次都需要修改端口或kill掉进程,在pom文件中把fork改为false就行
推荐阅读
-
80端口被system占用导致Apache无法启动的解决方法
-
80端口被Pid为4的未知程序占用导致Apache不能启动的解决方法
-
Win10系统80端口被System占用,Apache启动不了的解决方法
-
springboot项目启动控制台显示端口被占用解决方法
-
springboot项目启动产生随机端口号并校验该端口号是否被占用
-
80端口被Pid为4的未知程序占用导致Apache不能启动的解决方法
-
php的wamp服务器的wampapache启动时遇到80端口被system占用的解决方法
-
80端口被system占用导致Apache无法启动的解决方法
-
Win10系统80端口被System占用,Apache启动不了的解决方法
-
php的wamp服务器的wampapache启动时遇到80端口被system占用的解决方法