The Tomcat connector configured to listen on port 8080 failed to start.-- 解决端口占用问题

百度翻译的解释:

The Tomcat connector configured to listen on port 8080 failed to start.-- 解决端口占用问题

这种错误提示,一般都是端口被占用的问题,我这个显示的是端口8081被占用

解决办法:

1.输入你想要查的正在占用的端口号:netstat -ano|findstr 8081,此时会显示端口8081对应的tcp号

The Tomcat connector configured to listen on port 8080 failed to start.-- 解决端口占用问题

2.输入命令taskkill /f /t /im 17044,终止了8081端口的运行进程

The Tomcat connector configured to listen on port 8080 failed to start.-- 解决端口占用问题

3.此时项目的8081端口就可以正常的运行了

The Tomcat connector configured to listen on port 8080 failed to start.-- 解决端口占用问题

 

相关文章:

  • 2021-08-17
  • 2021-06-28
  • 2021-05-10
  • 2022-12-23
  • 2022-12-23
  • 2021-09-24
  • 2021-12-21
猜你喜欢
  • 2021-07-22
  • 2021-11-26
  • 2021-07-05
  • 2021-06-29
  • 2021-12-20
  • 2021-05-28
相关资源
相似解决方案