List of running JVMs on the localhost

后端 未结 8 1382
慢半拍i
慢半拍i 2020-12-24 15:57

How to get in Java 6+ the list of running JVMs on the localhost and their specs (i.e. Java version, running threads, etc.)?

Does the Java API provide such features?

8条回答
  •  忘掉有多难
    2020-12-24 16:25

    As far as I know the jps provides the list of process launched using the jvm it belongs to. If you have multiple JDKs installed I don't think it would be of help. If you want a list of all java processes you have to use "ps -ef | grep java". I have seen many times JVsualVM couldn't identify all the java processes running on a specific host. If you requirement is specific to a JVM launched processes the above suggestions would apply.

提交回复
热议问题