-Dcom.sun.management.jmxremote=true
-Djava.rmi.server.hostname=**
-Dcom.sun.management.jmxremote.port=6666
-Dcom.sun.management.jmxremote.ssl=false
-Dcom.sun.managementote.ssl=false
-Dcom.sun.management.jmxremote.authenticate=false
# 下面是 Java Flight Recorder 取样分析
-XX:+UnlockCommercialFeatures
-XX:+FlightRecorder
Javacpu 和内存问题排查步骤:
- ps ux 查看运行的进程
- top -c查看占用cpu的进程
- top -bn1 -H -p <pid> 查看占用cpu的线程 // 找出cpu高的线程tid ps -mp <pid> -o THREAD,tid,time | sort -rn
- jstack <pid>查看线程运行情况 // 转换线程tidprintf "%x\n" <tid>
- jmap -heap <pid> 查看内存占用情况
网友评论