Tomcat 不止于 SNMP 选项

Tomcat 不止于 SNMP 选项

bin/setenv.sh我们有一个使用 SNMP 的监控应用程序,我已在我的 tomcat 服务器中使用文件中的以下选项启用了 SNMP 。

#
# SNMP for Tomcat
#
JAVA_OPTS="$JAVA_OPTS -Dcom.sun.management.snmp.interface=10.101.21.31"
JAVA_OPTS="$JAVA_OPTS -Dcom.sun.management.snmp.port=1651"
JAVA_OPTS="$JAVA_OPTS -Dcom.sun.management.snmp.acl=false"

在 tomcat 启动时没有任何问题,一切都很干净。但是当我停止 tomcat 时出现了这个错误。

[tomcat@webserver1 bin]$ ./catalina.sh stop
JAVA_OPTS: %JAVA_OPTS%
Using CATALINA_BASE:   /opt/tomcat7.1
Using CATALINA_HOME:   /opt/tomcat7.1
Using CATALINA_TMPDIR: /opt/tomcat7.1/temp
Using JRE_HOME:        /usr
Using CLASSPATH:       /opt/tomcat7.1/bin/bootstrap.jar:/opt/tomcat7.1/bin/tomcat-juli.jar
Error: Failed to start SNMP adaptor with address: /10.101.21.31:1651 (Address already in use)

无论如何,我可以彻底停止 tomcat 而不是杀死它吗?

答案1

您应该使用CATALINA_OPTS而不是JAVA_OPTScatalina.sh脚本很好地记录了差异:

#   CATALINA_OPTS   (Optional) Java runtime options used when the "start",
#                   "run" or "debug" command is executed.
#                   Include here and not in JAVA_OPTS all options, that should
#                   only be used by Tomcat itself, not by the stop process,
#                   the version command etc.
#                   Examples are heap size, GC logging, JMX ports etc.

JAVA_OPTS设置为的事实%JAVA_OPTS%也表明您出了问题(可能是 win32 管理员编写的脚本)。

相关内容