在 Sun WebServer 6.1 实例上使用 JMAP
我有一个在 Sun One WebServer 上运行的 Web 应用程序,我想使用 jmap 来转储堆空间内存。当我列出服务器上运行的进程时,没有列出 java 进程,而只列出了 webservd 进程(由 Sun WebServer 控制)。
如何将 jmap 与 Sun WebServer 6.1 服务器一起使用?我无法访问 jvm 的 pid...
我想使用的语法是:
jmap -dump:format=b,file=heap.bin PID
其中 PID 是缺少的信息。
I have a webapp running on Sun One WebServer and I would like to use jmap to dump the heap space memory. When I list the processes running on my server, no java processes are listed, but only webservd processes (controlled by Sun WebServer).
How do I use jmap with Sun WebServer 6.1 servers? I don't have access to the jvm's pid....
The syntax which I would like to use is:
jmap -dump:format=b,file=heap.bin PID
where PID is the missing piece of information.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想我明白了。使用 jps -l -m 我可以获得活动 pid 编号的列表,然后我可以将它们与 webservd PID 进行比较,以确定要转储哪个。
I think I figured it out. Using jps -l -m I can get the list of active pid numbers and then I can compare them with the webservd PIDs to figure out which one to dump.