LinuxCommandLibrary

jps

Lists the instrumented Java Virtual Machines (JVMs) on the target system. This command is experimental and unsupported.

TLDR

List all JVM processes

$ jps
copy


List all JVM processes with only PID
$ jps -q
copy


Display the arguments passed to the processes
$ jps -m
copy


Display the full package name of all processes
$ jps -l
copy


Display the arguments passed to the JVM
$ jps -v
copy

Help


Copied to clipboard