idea 无法正常启动Tomcat

idea 异常关闭 无法启动Tomacat
错误信息:Error running ‘agro_monitorNew’: Unable to open debugger port (127.0.0.1:54604): java.net.SocketException “Interrupted function call: accept failed”

导致这个错误的原因还是因为端口还被占用的问题,试了很多都没有解决,

查看EventLog有两个错误信息

  • Error running ‘agro_monitorNew’: Address localhost:1066 is already in use(端口号被占用)
    但是通过命令查询netstat -aon|findstr 1066并没有正在使用改端口好的进程,但是依然会报错误
    在这里插入图片描述
  • Error running ‘agro_monitorNew’: Unable to open debugger port (127.0.0.1:54605): java.net.SocketException “Interrupted function call: accept failed” (无法打开调试器端口(127.0.0.1:54604):java.net.SocketException“中断的函数调用:接受失败”)

在这里插入图片描述
修改端口号以后能运行,将JIMX PORT : 1066修改为5234
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/weixin_38171468/article/details/106709797