Reputation: 934
sometimes i can see core dump file of Websphere process generated in my Linux system. I think it as full core file. However, when i check with ulimit -a
, that would return with core file size 0
as one of them.
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?
Thanks
Upvotes: 0
Views: 2168
Reputation: 33946
By default, IBM Java will create a system dump in some situations as explained in the System dump defaults article of the IBM Java 6 InfoCenter. You can see those situations with the following command:
/path/to/WebSphere/ApplicationServer/java/bin/java -Xdump:what
System dumps are useful for IBM service to determine what has gone wrong with your JVM, so depending on the circumstance, you might want to open PMR.
If you really want to disable these dumps, then add -Xdump:system:none
to the "Generic JVM Arguments" of your server as explained in the Configuring the JVM article of the WebSphere Application Server InfoCenter.
Upvotes: 1