Search code examples
javamacososx-leopardjconsole

Where is JConsole in Leopard


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


Solution

  • 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.