Tomcat failed to shutdown

前端 未结 7 828
遥遥无期
遥遥无期 2020-12-14 01:31

When I add the following Java options to enable debugging:

JAVA_OPTS=\"$JAVA_OPTS -noverify -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_soc         


        
7条回答
  •  遥遥无期
    2020-12-14 02:03

    This is due to both applications are listening the same port number i.e 8000 while running in debug mode.

    One quick solution is change the debug port to 8001 in startup.bat

    SET DEBUGPORT=8001

提交回复
热议问题