The Tomcat connector configured to listen on port 8200 failed to start.【异常详情处理】

简介: The Tomcat connector configured to listen on port 8200 failed to start.【异常详情处理】

 

Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.

2018-08-05 14:10:01.000 ERROR 15332 --- [           main] o.s.b.d.LoggingFailureAnalysisReporter   :  

 

***************************

APPLICATION FAILED TO START

***************************

 

Description:

 

The Tomcat connector configured to listen on port 8200 failed to start. The port may already be in use or the connector may be misconfigured.


问题描述:

   8200端口被占用了....很无奈,没启动怎么会被占用呢...


解决办法:

1.打开cmd命令窗口  输入如下指令查看所有端口和PID

netstat -ano

如图操作:

50.jpg

2.找到对应的端口对应的PID  输入指令找到对应的进程

tasklist | findstr "4884"

如图操作:  

51.jpg

 

3.杀掉该进程 再次启动就OK啦

taskkill /f /t /im java.exe


如图所示:

52.jpg


目录
相关文章
|
4月前
|
XML 应用服务中间件 Android开发
【已解决】eclipse导入项目出错 Server Tomcat v7.0 Server at localhost failed to start
【已解决】eclipse导入项目出错 Server Tomcat v7.0 Server at localhost failed to start
47 0
|
5月前
|
Java 应用服务中间件 Maven
解决“Unable to start embedded Tomcat“错误的完整指南
通过逐步检查以上问题,你应该能够解决 "Unable to start embedded Tomcat" 错误,并使Tomcat成功启动。
1383 1
解决“Unable to start embedded Tomcat“错误的完整指南
|
11月前
|
应用服务中间件
Tomcat报错:The required Server component failed to start so Tomcat is unable to start
Tomcat报错:The required Server component failed to start so Tomcat is unable to start
225 0
|
5月前
|
Java 应用服务中间件
完美解决tomcat启动异常:Invalid byte tag in constant pool: 19;Unable to process Jar entry [module-info.class]
完美解决tomcat启动异常:Invalid byte tag in constant pool: 19;Unable to process Jar entry [module-info.class]
1193 0
|
5月前
|
Java 应用服务中间件 Linux
Tomcat异常实践总结
Tomcat异常实践总结
89 0
|
10月前
|
Java 应用服务中间件
解决java.lang.NoClassDefFoundError: JspException异常——Tomcat常见报错总结
解决java.lang.NoClassDefFoundError: JspException异常——Tomcat常见报错总结
165 0
|
11月前
|
应用服务中间件
The Tomcat connector configured to listen on port 10000 failed to start. The port may already be in
The Tomcat connector configured to listen on port 10000 failed to start. The port may already be in
|
11月前
|
应用服务中间件
tomcat 异常 HTTP method names must be tokens
tomcat 异常 HTTP method names must be tokens
1216 0
|
11月前
|
应用服务中间件
Tomcat启动时日志报 dcom.sun.manager.jmxremote 异常导致无法正常启动使用
Tomcat启动时日志报 dcom.sun.manager.jmxremote 异常导致无法正常启动使用
154 0
|
机器学习/深度学习 应用服务中间件 Shell