Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is JConsole in Leopard

does anyone knows where JConsole is Located in MacOSX (Leopard)?

like image 389
gansodesoya Avatar asked Apr 15 '09 01:04

gansodesoya


People also ask

Where can I find JConsole?

The jconsole executable is in JDK_HOME/bin , where JDK_HOME is the directory where the JDK is installed. If this directory is on your system path, you can start the tool by simply typing jconsole in a command (shell) prompt.

Is JConsole part of JRE?

The Java Server JRE as of release 8u45 ships with jconsole under /lib. It won't be available in jre 8u45.

What is meant by JConsole?

JConsole is a JMX-compliant GUI tool that connects to a running JVM, which started with the management agent. To start an application with the management agent for local monitoring, set the com.sun.management.jmxremote system property when you start the application.


1 Answers

Java 6? /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/bin/jconsole

Java 5? /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Home/bin/jconsole

If you want to find any program or file located on your Mac OS X 10.5 system, you can go to terminal and do it the unix way:

Either:

locate jconsole

Or:

find / -name jconsole

I prefer the first one 'cause it's faster. It uses a prebuilt index to perform the search.

like image 126
Pablo Santa Cruz Avatar answered Oct 12 '22 17:10

Pablo Santa Cruz