美文网首页
【java】jmap/jps/jinfo/Arthas

【java】jmap/jps/jinfo/Arthas

作者: Bogon | 来源:发表于2022-01-03 00:05 被阅读0次

jmap 

-XX:+HeapDumpOnOutOfMemoryError

$ jmap -dump:format=b,file=java_242677.hprof 242677

Dumping heap to /home/yzj/java_242677.hprof ...

Heap dump file created

jps 

jps - Java Virtual Machine Process Status Tool

https://docs.oracle.com/javase/7/docs/technotes/tools/share/jps.html

JAVA jps命令详解

https://www.cnblogs.com/tulianghui/p/5914535.html

jinfo

jinfo - Configuration Info

https://docs.oracle.com/javase/7/docs/technotes/tools/share/jinfo.html

jvm工具之jinfo命令的使用

http://fetosoft.cn/archives/2020/02/16/163

Arthas

Arthas(阿尔萨斯) 能为你做什么?

https://arthas.aliyun.com/doc/

$ curl -O https://arthas.aliyun.com/arthas-boot.jar

$  java -jar arthas-boot.jar  242677

程序CPU占用率飙升,如何定位线程的堆栈信息?

相关文章

  • 【java】jmap/jps/jinfo/Arthas

    jmap -XX:+HeapDumpOnOutOfMemoryError $ jmap -dump:format=...

  • jdk工具

    jinfo jstat jps jmap jhat oracle官方参考 可以看出,是对jmap dump的数据进...

  • JVM常见使用参数

    jps 查看当前java进程 jinfo [pid] 查看进程的参数设置信息和系统属性 jmap -heap [...

  • jvm系列(四):jvm调优-命令大全(jps jstat jm

    jvm系列(四):jvm调优-命令大全(jps jstat jmap jhat jstack jinfo)

  • 参数

    一、jps 二、jstat 三、jinfo 四、jmap 五、jhat 六、jstack 七、jcmd

  • jvm 命令

    jps 虚拟机进程状况工具 jstat 虚拟机统计信息监控工具 jinfo java 配置信息工具 jmap j...

  • JVM常用命令与工具

    jps jinfo [-pid] jmap (谨慎使用,会导致STW) (面试中千万不要说在生产环境中使用jmap...

  • JVM调优命令

    Sun JDK监控和故障处理命令有jps、 jstat、 jmap、 jhat、 jstack 、jinfo。 详...

  • jvm 调优 和gc 算法

    jvm 常用命令 : jmap jstat jinfo jps gc 算法 串行垃圾回收器(Serial ...

  • jvm常用命令

    1、jps 2、jmap 3、jstat 4、jinfo 5、jhat 6、jstack 6.1、使用案例1:查看...

网友评论

      本文标题:【java】jmap/jps/jinfo/Arthas

      本文链接:https://www.haomeiwen.com/subject/blptcrtx.html