运行jmap获取无法打开套接字文件
我必须运行jmap
才能获取我的进程的堆转储。但jvm
回来了:
Unable to open socket file: target process not responding or HotSpot VM not loadedThe -F option can be used when the target process is not responding
所以我使用了-F
:
./jmap -F -dump:format=b,file=heap.bin 10330Attaching to process ID 10331, please wait...Debugger attached successfully.Server compiler detected.JVM version is 24.51-b03Dumping heap to heap.bin ...
使用-F
是可以进行堆转储吗?
我等了20分钟还没完呢。有什么想法吗?
aluckdog