Don't Leave Coredumps on Web Servers
blog.hboeck.de
Don't Leave Coredumps on Web Servers
1–10 of 34 posts
Re: Don't Leave Coredumps on Web Servers
#2Re: Don't Leave Coredumps on Web Servers
#3You can "Control + \" your application to generate a core dump if you want to test it.
Re: Don't Leave Coredumps on Web Servers
#4You can "Control + \" your application to generate a core dump if you want to test it.
Re: Don't Leave Coredumps on Web Servers
#5Re: Don't Leave Coredumps on Web Servers
#6You can "Control + \" your application to generate a core dump if you want to test it.
It didn't work for me on macOS. I tried it on `yes` and `sleep 5` but it simply quit the program. No files were saved.
The linked article also explains how to change where core dumps are saved. Maybe your system is configured to save them in a specific folder (I have no clue what macOS' default settings for core dumps are!).
Re: Don't Leave Coredumps on Web Servers
#7You can "Control + \" your application to generate a core dump if you want to test it.
Re: Don't Leave Coredumps on Web Servers
#8Earlier quoted context omitted.
It didn't work for me on macOS. I tried it on `yes` and `sleep 5` but it simply quit the program. No files were saved.
It is possible to set a maximum size for core dump files via limits.conf / ulimit. If this limit is 0, it effectively disables core dumps. Call ulimit -a from a shell to see the current maximum size. The linked article also explains how to change where core dumps are saved. Maybe your system is configured to save them in a specific folder (I have no clue what macOS' default settings for core dumps are!).
Re: Don't Leave Coredumps on Web Servers
#9Re: Don't Leave Coredumps on Web Servers
#10In 15 years of hosting hundreds of PHP site, I've never seen a single coredump. Is it just me ?