java問題排查

jose0925發表於2020-10-30

arthas診斷工具使用相關:

https://blog.csdn.net/u013735734/article/details/102930307

使用 dashboard 命令可以概覽程式的 執行緒、記憶體、GC、執行環境資訊

thread -n [顯示的執行緒個數],就可以排列出 CPU 使用率 Top N 的執行緒

使用 thread | grep pool 命令檢視執行緒池裡執行緒資訊

thread -b 命令檢視直接定位到死鎖資訊

 

arthas診斷工具:

問題異常:

com.sun.tools.attach.AttachNotSupportedException: Unable to open socket file: target process not responding or HotSpot VM not loaded

 

解決方案:

-XX:+StartAttachListener

nohup java -XX:+StartAttachListener -jar arthas-demo.jar >>/dev/null &

 

向jvm引數新增'-XX:+StartAttachListener'可解決問題。 這裡討論類似的問題 https://code.google.com/p/jmockit/issues/detail?id=136和 (w其中談到了jdk中可能的迴歸7 建立)

相關文章