snippetbashTip
jps — Show JVM process status of current user. More information: <https://docs.oracle.com/en/java/javase/2
Viewed 0 times
currentcommandjpsshowstatusprocessclijvm
Problem
How to use the
jps command: Show JVM process status of current user. More information: <https://docs.oracle.com/en/java/javase/25/docs/specs/man/jps.html>.Solution
jps — Show JVM process status of current user. More information: <https://docs.oracle.com/en/java/javase/25/docs/specs/man/jps.html>.List all JVM processes:
jpsList all JVM processes with only PID:
jps -qDisplay the arguments passed to the processes:
jps -mDisplay the full package name of all processes:
jps -lDisplay the arguments passed to the JVM:
jps -vCode Snippets
List all JVM processes
jpsList all JVM processes with only PID
jps -qDisplay the arguments passed to the processes
jps -mDisplay the full package name of all processes
jps -lDisplay the arguments passed to the JVM
jps -vContext
tldr-pages: common/jps
Revisions (0)
No revisions yet.