Where is JConsole in Leopard

gansodesoya picture gansodesoya · Apr 15, 2009 · Viewed 12.5k times · Source

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

Answer

Pablo Santa Cruz picture Pablo Santa Cruz · Apr 15, 2009

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.