<<<<<<< HEAD
jvm命令大全
简介
在本文档中介绍常用的jvm命令。
jps
查看java启动进程的信息
-q 只输出LVMID,省略主类的名称
-l 输出主类的全名
-m 输出虚拟机启动时,传递给main()的参数
-v 输出jvm的参数
jstat
- 监视虚拟机各种运行状态信息的命令行工具
# jstat -help
Usage: jstat -help|-options
jstat -<option> [-t] [-h<lines>] <vmid> [<interval> [<count>]]
Definitions:
<option> An option reported by the -options option
<vmid> Virtual Machine Identifier. A vmid takes the following form:
<lvmid>[@<hostname>[:<port>]]
Where <lvmid> is the local vm identifier for the target
Java virtual machine, typically a process id; <hostname> is
the name of the host running the target Java virtual machine;
and <port> is the port number for the rmiregistry on the
target host. See the jvmstat documentation for a more complete
description of the Virtual Machine Identifier.
<lines> Number of samples between header lines.
<interval> Sampling interval. The following forms are allowed:
<n>["ms"|"s"]
Where <n> is an integer and the suffix specifies the units as
milliseconds("ms") or seconds("s"). The default units are "ms".
<count> Number of samples to take before terminating.
-J<flag> Pass <flag> directly to the runtime system.
# jstat -options
-class
-compiler
-gc
-gccapacity
-gccause
-gcmetacapacity
-gcnew
-gcnewcapacity
-gcold
-gcoldcapacity
-gcutil
-printcompilation
# jstat -t -gc 3398 250 4
结果字段说明:
S0C :年轻代中第一个survivor(幸存区)的容量 (字节)
S1C :年轻代中第二个survivor(幸存区)的容量 (字节)
S0U :年轻代中第一个survivor(幸存区)目前已使用空间 (字节)
S1U :年轻代中第二个survivor(幸存区)目前已使用空间 (字节)
EC :年轻代中Eden(伊甸园)的容量 (字节)
EU :年轻代中Eden(伊甸园)目前已使用空间 (字节)
OC :Old代的容量 (字节)
OU :Old代目前已使用空间 (字节)
MC:metaspace(元空间)的容量 (字节)
MU:metaspace(元空间)目前已使用空间 (字节)
YGC :从应用程序启动到采样时年轻代中gc次数
YGCT:从应用程序启动到采样时年轻代中gc所用时间(s)
FGC :从应用程序启动到采样时old代(全gc)gc次数
FGCT:从应用程序启动到采样时old代(全gc)gc所用时间(s)
GCT :从应用程序启动到采样时gc用的总时间(s)
jinfo
- 实时地查看和调整虚拟机的各项参数(即将废弃)
# jinfo
Usage:
jinfo [option] <pid>
(to connect to running process)
jinfo [option] <executable <core>
(to connect to a core file)
jinfo [option] [server_id@]<remote server IP or hostname>
(to connect to remote debug server)
where <option> is one of:
-flag <name> to print the value of the named VM flag
-flag [+|-]<name> to enable or disable the named VM flag
-flag <name>=<value> to set the named VM flag to the given value
-flags to print VM flags
-sysprops to print Java system properties
<no option> to print both of the above
-h | -help to print this help message
jmap
- 用于生成堆转储快照
-dump 生成Java堆转储快照,格式为:-dump[live, ]format=b, file=<filename>,其中live子参数说明是否只dump出存活的对象。
-finalizerinfo 显示在F-Queue中等待Finalizer线程执行finalize方法的对象。只在Linux/Solaris平台下有效
-heap 显示Java堆详细信息,如使用哪种回收器,参数配置,分代状况等。只在Linux/Solaris平台下有效
-histo 显示堆中对象统计信息,包括类,实例数量,合计容量
-permstat 以ClassLoader为统计口径显示永久代内存状况,只在Linux/Solaris平台有效
-F 当虚拟机进程堆-dump选项没有响应时,可使用这个选项强制生成dump快照。只在Linux/Solaris平台有效
样例
- 生成core文件
jmap -dump:live,format=b,file=myjmapfile.txt 19570
备注:
Error attaching to process: sun.jvm.hotspot.debugger.DebuggerException:不允许的操作
执行:echo 0 | sudo tee /proc/sys/kernel/yama/ptrace_scope
或者切换为root用户
* well-known file is not secure
在机器上找到 /tmp/hsperfdata_$USER/$PID一个这样的文件,当我们执行jmap或者jstack出现上叙信息时,先检查执行该命令的用户是否和hsperfdata_$USER这个文件所属的用户一致,如果不一致,切换至成一致再执行即可
jhat
- 用于分析用jmap生成的堆快照
样例
jhat dump.bin
jstack
- 用于生成虚拟机当前时刻的线程快照 注意:
- 哪个用户启动的进程用哪个用户执行,否则会报错:unable to open socket file
# jstack
Usage:
jstack [-l] <pid>
(to connect to running process)
jstack -F [-m] [-l] <pid>
(to connect to a hung process)
jstack [-m] [-l] <executable> <core>
(to connect to a core file)
jstack [-m] [-l] [server_id@]<remote server IP or hostname>
(to connect to a remote debug server)
Options:
-F to force a thread dump. Use when jstack <pid> does not respond (process is hung)
-m to print both java and native frames (mixed mode)
-l long listing. Prints additional information about locks
-h or -help to print this help message
样例
- 查找使用cpu最高的进程
top
shift+p cpu排序
备注: shift+m内存排序
- 查看所有线程
top -Hp 7179
- 线程好转换为16进制
printf "%x\n" 17880
- 查看相应线程的信息
jstack -l 7179 |grep 45d8 -A 30
-A 30 表示显示匹配行后的30行
java
启动java应用
- java [ options ] class [ arguments ]
- java [ options ] -jar file.jar [ arguments ]
* -client 以客户端方式启动虚拟机
* -server 以服务端方式启动虚拟机,默认方式
* -agentpath:pathname[=options] 通过library全路径名方式加载
* -cp classpath 这个参数是用来指定类加载的路径。可以指定一个或者多个目录,JAR文件,或者ZIP文件,类加载会从指定的文件中查找。如果有多个文件用:隔开
* -Dproperty=value 设置系统属性.
* -d32 32位模式下运行
* -d64 64位模式下运行
* -verbose 显示类加载信息
* -verbose:gc 打印gc信息
* -verbose:jni 打印jni相关信息
启动一个应用
- java -jar event-1.0.jar
javac
jar
- 用于管理java的归档包
* -c 创建新的 JAR 文件包
* -t 列出 JAR 文件包的内容列表
* -x 展开 JAR 文件包的指定文件或者所有文件
* -u 更新已存在的 JAR 文件包 (添加文件到 JAR 文件包中)
* -v 生成详细报告并打印到标准输出
* -f 指定 JAR 文件名,通常这个参数是必须的
* -m 指定需要包含的 MANIFEST 清单文件
* -0 只存储,不压缩,这样产生的 JAR 文件包会比不用该参数产生的体积大,但速度更快
* -M 不产生所有项的清单(MANIFEST〕文件,此参数会忽略 -m 参数
创建jar包
-
jar cf test.jar test 该命令没有执行过程的显示,执行结果是在当前目录生成了 test.jar 文件。如果当前目录已经存在 test.jar,那么该文件将被覆盖
-
jar cvf test.jar test 显示打包过程
解包
- jar xf test.jar
jmc
jdb
javah
jconsole
jcmd
jstatd
结语
=======
jvm命令大全
简介
在本文档中介绍常用的jvm命令。
jps
查看java启动进程的信息
-q 只输出LVMID,省略主类的名称
-l 输出主类的全名
-m 输出虚拟机启动时,传递给main()的参数
-v 输出jvm的参数
jstat
- 监视虚拟机各种运行状态信息的命令行工具
# jstat -help
Usage: jstat -help|-options
jstat -<option> [-t] [-h<lines>] <vmid> [<interval> [<count>]]
Definitions:
<option> An option reported by the -options option
<vmid> Virtual Machine Identifier. A vmid takes the following form:
<lvmid>[@<hostname>[:<port>]]
Where <lvmid> is the local vm identifier for the target
Java virtual machine, typically a process id; <hostname> is
the name of the host running the target Java virtual machine;
and <port> is the port number for the rmiregistry on the
target host. See the jvmstat documentation for a more complete
description of the Virtual Machine Identifier.
<lines> Number of samples between header lines.
<interval> Sampling interval. The following forms are allowed:
<n>["ms"|"s"]
Where <n> is an integer and the suffix specifies the units as
milliseconds("ms") or seconds("s"). The default units are "ms".
<count> Number of samples to take before terminating.
-J<flag> Pass <flag> directly to the runtime system.
# jstat -options
-class
-compiler
-gc
-gccapacity
-gccause
-gcmetacapacity
-gcnew
-gcnewcapacity
-gcold
-gcoldcapacity
-gcutil
-printcompilation
# jstat -t -gc 3398 250 4
结果字段说明:
S0C :年轻代中第一个survivor(幸存区)的容量 (字节)
S1C :年轻代中第二个survivor(幸存区)的容量 (字节)
S0U :年轻代中第一个survivor(幸存区)目前已使用空间 (字节)
S1U :年轻代中第二个survivor(幸存区)目前已使用空间 (字节)
EC :年轻代中Eden(伊甸园)的容量 (字节)
EU :年轻代中Eden(伊甸园)目前已使用空间 (字节)
OC :Old代的容量 (字节)
OU :Old代目前已使用空间 (字节)
MC:metaspace(元空间)的容量 (字节)
MU:metaspace(元空间)目前已使用空间 (字节)
YGC :从应用程序启动到采样时年轻代中gc次数
YGCT:从应用程序启动到采样时年轻代中gc所用时间(s)
FGC :从应用程序启动到采样时old代(全gc)gc次数
FGCT:从应用程序启动到采样时old代(全gc)gc所用时间(s)
GCT :从应用程序启动到采样时gc用的总时间(s)
jinfo
- 实时地查看和调整虚拟机的各项参数(即将废弃)
# jinfo
Usage:
jinfo [option] <pid>
(to connect to running process)
jinfo [option] <executable <core>
(to connect to a core file)
jinfo [option] [server_id@]<remote server IP or hostname>
(to connect to remote debug server)
where <option> is one of:
-flag <name> to print the value of the named VM flag
-flag [+|-]<name> to enable or disable the named VM flag
-flag <name>=<value> to set the named VM flag to the given value
-flags to print VM flags
-sysprops to print Java system properties
<no option> to print both of the above
-h | -help to print this help message
jmap
- 用于生成堆转储快照
-dump 生成Java堆转储快照,格式为:-dump[live, ]format=b, file=<filename>,其中live子参数说明是否只dump出存活的对象。
-finalizerinfo 显示在F-Queue中等待Finalizer线程执行finalize方法的对象。只在Linux/Solaris平台下有效
-heap 显示Java堆详细信息,如使用哪种回收器,参数配置,分代状况等。只在Linux/Solaris平台下有效
-histo 显示堆中对象统计信息,包括类,实例数量,合计容量
-permstat 以ClassLoader为统计口径显示永久代内存状况,只在Linux/Solaris平台有效
-F 当虚拟机进程堆-dump选项没有响应时,可使用这个选项强制生成dump快照。只在Linux/Solaris平台有效
样例
- 生成core文件
jmap -dump:live,format=b,file=myjmapfile.txt 19570
备注:
Error attaching to process: sun.jvm.hotspot.debugger.DebuggerException:不允许的操作
执行:echo 0 | sudo tee /proc/sys/kernel/yama/ptrace_scope
或者切换为root用户
* well-known file is not secure
在机器上找到 /tmp/hsperfdata_$USER/$PID一个这样的文件,当我们执行jmap或者jstack出现上叙信息时,先检查执行该命令的用户是否和hsperfdata_$USER这个文件所属的用户一致,如果不一致,切换至成一致再执行即可
jhat
- 用于分析用jmap生成的堆快照
样例
jhat dump.bin
jstack
- 用于生成虚拟机当前时刻的线程快照 注意:
- 哪个用户启动的进程用哪个用户执行,否则会报错:unable to open socket file
# jstack
Usage:
jstack [-l] <pid>
(to connect to running process)
jstack -F [-m] [-l] <pid>
(to connect to a hung process)
jstack [-m] [-l] <executable> <core>
(to connect to a core file)
jstack [-m] [-l] [server_id@]<remote server IP or hostname>
(to connect to a remote debug server)
Options:
-F to force a thread dump. Use when jstack <pid> does not respond (process is hung)
-m to print both java and native frames (mixed mode)
-l long listing. Prints additional information about locks
-h or -help to print this help message
样例
- 查找使用cpu最高的进程
top
shift+p cpu排序
备注: shift+m内存排序
- 查看所有线程
top -Hp 7179
- 线程好转换为16进制
printf "%x\n" 17880
- 查看相应线程的信息
jstack -l 7179 |grep 45d8 -A 30
-A 30 表示显示匹配行后的30行
java
启动java应用
- java [ options ] class [ arguments ]
- java [ options ] -jar file.jar [ arguments ]
* -client 以客户端方式启动虚拟机
* -server 以服务端方式启动虚拟机,默认方式
* -agentpath:pathname[=options] 通过library全路径名方式加载
* -cp classpath 这个参数是用来指定类加载的路径。可以指定一个或者多个目录,JAR文件,或者ZIP文件,类加载会从指定的文件中查找。如果有多个文件用:隔开
* -Dproperty=value 设置系统属性.
* -d32 32位模式下运行
* -d64 64位模式下运行
* -verbose 显示类加载信息
* -verbose:gc 打印gc信息
* -verbose:jni 打印jni相关信息
启动一个应用
- java -jar event-1.0.jar
javac
jar
- 用于管理java的归档包
* -c 创建新的 JAR 文件包
* -t 列出 JAR 文件包的内容列表
* -x 展开 JAR 文件包的指定文件或者所有文件
* -u 更新已存在的 JAR 文件包 (添加文件到 JAR 文件包中)
* -v 生成详细报告并打印到标准输出
* -f 指定 JAR 文件名,通常这个参数是必须的
* -m 指定需要包含的 MANIFEST 清单文件
* -0 只存储,不压缩,这样产生的 JAR 文件包会比不用该参数产生的体积大,但速度更快
* -M 不产生所有项的清单(MANIFEST〕文件,此参数会忽略 -m 参数
创建jar包
-
jar cf test.jar test 该命令没有执行过程的显示,执行结果是在当前目录生成了 test.jar 文件。如果当前目录已经存在 test.jar,那么该文件将被覆盖
-
jar cvf test.jar test 显示打包过程
解包
- jar xf test.jar
jmc
jdb
javah
jconsole
jcmd
jstatd
结语
-【JVM 命令 官方指导】