profiling - Java VisualVM does not show/list my tomcat java process -
i using jdk64
, java version 1.6.0_24
. running both (tomcat java process , visualvm) processes administrator on windows server 2008.
tomcat running -xmx7196m
, jvisualvm
running -xms24m
, -xmx256m
. cause?
you need add jmx
parameters enable jmx
connection application, add following parameters:
-dcom.sun.management.jmxremote -dcom.sun.management.jmxremote.authenticate=false -dcom.sun.management.jmxremote.port=8484 -dcom.sun.management.jmxremote.ssl=false
then need add tomcat process manually, right click on localhost node -> add jmx connection -> type port -> ok
.
your tomcat process listed in under localhost node.
Comments
Post a Comment