Java / JMX
What is JPS tool in Java?
The Java Virtual Machine has the JPS (Java Process Status) tool which works like the ps command. JPS tool lists all Java Processes of a user.

jps -l command outputs the full package name for the application's main class or the full path name to the application's JAR file. jps -m command outputs the arguments passed to the main method. The output may be null for embedded JVMs.
More Related questions...