我刚刚在 Tomcat 7 中安装了一个分析器,现在我在关机时收到 BindException

我刚刚在 Tomcat 7 中安装了一个分析器,现在我在关机时收到 BindException

所以我刚刚读过的 HOWTO 说将这些 JAVA_OPTS 添加到启动脚本中:

-Dcom.sun.management.jmxremote=true
-Dcom.sun.management.jmxremote.port=[place port number here]
-Dcom.sun.management.jmxremote.ssl=false
-Dcom.sun.management.jmxremote.authenticate=false

我这样做了,它工作正常,但 Tomcat 没有关闭,并给我

java.net.BindException: Address already in use

当我执行关机脚本时。

答案1

已解决:是 CATALINA_OPTS 而不是 JAVA_OPTS。HOWTO 有误。参考:Tomcat 文档有关 Profiler

相关内容