Quick steps to connect using Jconsole java
installed WebLogic 10.3.2 on HP-UX Itanium and are using Sun-JVM. To monitor WebLogic performance via JConsole please attempt the following;
Specify the 4 properties as described below (main class is Test1 in the current directory)
java -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=1090 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -cp . Test1
Then, you can use the console to spy “Test1” using;
>jconsole <IP@>:1090
where <IP@> is the default network interface.of your HP-UX box.
If running “jconsole” on the same box, you’ll need to set an X11 display.
There is a nice article which explains all steps to perform the weblogic management in oracle blog here.
You can also check Using JConsole article by Oracle for more info on the same.
In case of any ©Copyright or missing credits issue please check CopyRights page for faster resolutions.