I chased tomcat JMX configuration up and I found this. Add the following code in the tomcat start script.
export JAVA_OPTS="-Dcom.sun.management.jmxremote \ -Dcom.sun.management.jmxremote.port=50001 \ -Dcom.sun.management.jmxremote.ssl=false \ -Dcom.sun.management.jmxremote.authenticate=false" After you just have to launch and connect JConsole to a remote process with the server address and the JMX port. For example, I use localhost:50001. ----------------- Sebastien 2008/8/8 Brett Porter <[EMAIL PROTECTED]> > I expect it is this page: > http://docs.codehaus.org/display/CONTINUUMUSER/Monitoring > > I've added a quick note about standard servlet containers - you need > to look for how to pass Java VM options to their startup scripts. > > Cheers, > Brett > > 2008/8/8 Olivier Lamy <[EMAIL PROTECTED]>: > > Hi, > > What do you mean with monitoring ? > > > > -- > > Olivier > > > > 2008/8/8 Sébastien PEYRON <[EMAIL PROTECTED]>: > >> Hi all, > >> I read the Continuum monitoring documentation but it only address the > >> standalone installation. > >> Is there any possibility to monitor a Continuum application installed in > a > >> Tomcat 6 server ? > >> > >> -- > >> Sébastien Peyron > >> > > > > > > -- > Brett Porter > Blog: http://blogs.exist.com/bporter/ > -- Sébastien Peyron
