can someone let me know when/why .mdmp files would...
# box-products
s
can someone let me know when/why .mdmp files would be created by commandbox? I’m assuming it’s from when it crashes it dumps the memory. If there’s some settings to manage that like size/frequency/rotation that would be handy too
b
@salted Those are being created by Java itself. The file is a minidump
Are you getting them from the CLI or a server?
s
It appears to be from a server
b
There is a known issue with FusionReactor for quite some time now that can cause kernel panics on server shutdown, but that usually just dumps the hs_err file, not a minidump
s
hmm
b
I'd find out why it's happening
s
Yep I’ll have a look at the system events, thanks!
b
You can tell the JVM not to do it with
Copy code
-XX:-CreateMinidumpOnCrash
but it's prolly a sign of an issue you should at least identify
s
Yeah - thanks for the relevant flag, though
b
Look for the related
hs_err
file for details
Usually they are written in the working directory of the java process