diff --git a/pages/common/jps.md b/pages/common/jps.md new file mode 100644 index 0000000000..82a91c29c3 --- /dev/null +++ b/pages/common/jps.md @@ -0,0 +1,23 @@ +# jps + +> Show JVM Process Status of current user. + +- List all JVM processes: + +`jps` + +- List all JVM processes with only PID: + +`jps -q` + +- Display the arguments passed to the processes: + +`jps -m` + +- Display the full package name of all processes: + +`jps -l` + +- Display the arguments passed to the JVM: + +`jps -v`