How to Monitor Multiple JVM's on a Server with VisualVM
Join the DZone community and get the full member experience.
Join For FreeIn the last article I have shown you how to start WebLogic Server with single admin and mulitiple managed servers. After those are started, how do you go check their health status? You can use the admin's /console webapp. But there is also another tool that comes with all the default Oracle/Open JDK 6+: the VisualVM. I will show you how to get that up and running to monitor multiple JVM's.
On the server where you run your JVM servers, do this:
1. cd into $HOME and create a file named "jstatd.all.policy" with the following:
jvisualvm &
4. Inside VisualVM, add a Remote host of your server and you should see all the JVM that started there.
Here is an example of how it looks like:

On the server where you run your JVM servers, do this:
1. cd into $HOME and create a file named "jstatd.all.policy" with the following:
grant codebase "file:${java.home}/../lib/tools.jar" { permission java.security.AllPermission; };2. Run this command:
jstatd -J-Djava.security.policy=jstatd.all.policy &3. Now go back to your PC and open a terminal and run the following:
jvisualvm &
4. Inside VisualVM, add a Remote host of your server and you should see all the JVM that started there.
Here is an example of how it looks like:
Monitor (synchronization)
Published at DZone with permission of Zemian Deng, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Trending
-
File Upload Security and Malware Protection
-
Top 10 Pillars of Zero Trust Networks
-
Mastering Time Series Analysis: Techniques, Models, and Strategies
-
How To Use Pandas and Matplotlib To Perform EDA In Python
Comments