zoukankan      html  css  js  c++  java
  • springboot项目启动----8080端口被占用排雷经过

    springboot项目,项目正常启动访问8080端口;前几次都是正常的,今天突入再次运行时突然提示我说8080端口被占用了,这我就不服了,然就就去排查哪里出的问题。

    1.问题报错现象:

    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.

    2.正式开始了排查之路:

    cmd命令进入doc窗口:

    2.1输入 netstat -nao 查看目前使用中的端口信息

     2.2 再次输入命令:  tasklist|findstr "13932"  

    发现java.exe占用着8080端口.结束进程,然后再次启动springboot项目

    项目再次启动失败,提示8080端口被占用,好吧,再次排查,

    然后在任务管理器中把java进程关闭之后,发现后台进程中还有一个java的进程,把后台进程也关闭之后,再次启动项目,好了,没有报错了,这次的锅就是它了。

  • 相关阅读:
    0.1+0.2!==0.3
    标准盒模型IE盒模型
    Vue自定义组件通过v-model通信
    vue-cli3.0 使用 postcss-pxtorem px转rem
    render函数、createElement函数
    mixins(混入)
    vue.extend与vue.component
    js事件系列
    vue脚手架项目结构
    python模块和包
  • 原文地址:https://www.cnblogs.com/KdeS/p/13469711.html
Copyright © 2011-2022 走看看