有时我可以看到我的Linux系统中生成了Websphere进程的核心转储文件。我认为它是完整的核心文件。但是,当我检查ulimit -a时,它会返回core file size 0作为其中之一。
From my understanding, that `core file size 0` means no core dump file would be produced in that environment. But if so, why that Websphere Application Server process can it happen at that moment?谢谢
发布于 2012-11-26 22:51:19
缺省情况下,IBM Java将在某些情况下创建系统转储,如IBM Java6 InfoCenter的System dump defaults文章中所述。您可以使用以下命令查看这些情况:
/path/to/WebSphere/ApplicationServer/java/bin/java -Xdump:what系统转储对于IBM服务确定您的JVM出了什么问题很有用,因此根据情况,您可能希望打开PMR。
如果您确实想禁用这些转储,那么可以按照WebSphere应用服务器InfoCenter的Configuring the JVM文章中的说明,将-Xdump:system:none添加到服务器的“通用JVM参数”中。
https://stackoverflow.com/questions/13532451
复制相似问题