Some tips and tricks on troubleshooting PHP Core Dumps

Debug core dump files:

gdb /usr/bin/php5 /path/to/core.3224

Mass delete core dump files safely.

find . -type f -regex ".*/core\.[0-9]*$" -exec rm -v {} \;

Disable Core dumps system wide

Published by salubrium

I am a Systems Administrator based in Sydney, Australia with some hugely varied interests: Topics covered are Virtualization, Web Hosting, Remote Desktop, Security and Backups, PHP, Python, MVC Frameworks, SEO

Leave a comment

Your email address will not be published. Required fields are marked *