disable core dump

#1
Hi!

I can't figure out how to stop litespeed from creating core dumps on my server - I have the core dump option set to disable and it's still spawning core.**** files in the root of my rails app.

the cause of the core dump is image processing in a rails app where i'm running into low VPS limits, which i can upgrade to fix.. but I'd like to solve the core dump issue first, the files are very large
 

mistwang

LiteSpeed Staff
#2
The core dump is created by crashing ruby process, not lshttpd, so it is not controled by the configuration. you need to check the core file with gdb and report the bug to ruby community.

Code:
gdb /usr/local/bin/ruby <core_file_name>
bt
 
Top