When to use Tomcat CATALINA_OPTS instead of JAVA_OPTS - See more at: http://www.tikalk.com/java/when

来源:互联网 发布:php初学者开发工具 编辑:程序博客网 时间:2024/06/05 14:59

转自:http://www.tikalk.com/java/when-use-tomcat-catalinaopts-instead-javaopts/


We have an environment with the follwing elements:

  • Apache Tomcat Version 6.0.29
  • JMX technology
  • Web application

Every time we stop the tomcat server using the standrd shutdown.sh script it was failed, the tomcat process remains alive and the following exception was thrown:

Error: Exception thrown by the agent : java.rmi.server.ExportException: Port already in use: 7004; nested exception is: java.net.BindException: Address already in use

We know that 7004 is our JMX remote port, but it was not clear why the tomcat shutdown requires to bind this port.

After some research we found out that when tomcat starts, port 7004 (in this example) is bound. For shutdown, another jvm is launched and gets the same jmx parameters. Therefore, it tries to bind to port 7004, too, fails and shuts the jvm down. The shutdown procedure and thus tomcat is still running.

The problem is actually wider because each JAVA_OPTS property is also being used also when shutting down, and in most cases this is not the behavior we might expect. Think we would like to extend the VM memory, we probably don't want the shutdown to start a second VM with that memory size.

Tomcat community has been released a fix for this issue from tomcat 5.5.21 onwards and it called CATALINA_OPTS.

All we need is to undersatnd how to use it properly. Properties that will be set to CATALINA_OPTS will be apply to start and rub but not stop, JAVA_OPTS will apply to all three.

For example in our case we need to set the JMX remote port to CATALINA_OPTS and not to JAVA_OPTS:

export CATALINA_OPTS="$CATALINA_OPTS -Dcom.sun.management.jmxremote.port=7004"

After using this method the tomcat shutdown process is working smoothly.

- See more at: http://www.tikalk.com/java/when-use-tomcat-catalinaopts-instead-javaopts/#sthash.vLQccRcM.dpuf
0 0
原创粉丝点击