|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2012-09-16 01:25 UTC] admin at yqed dot com
Description: ------------ This issue started making surface with PHP 5.3.15 and is still present in 5.3.17 release. In /var/log/messages, you will see entries similar to: hermes kernel: php-fpm[20659]: segfault at 00002aea5a750210 rip 0000003ca220da3e rsp 00007fff6b7d56b0 error 4 I created a objdump which will help you precisely locate the current issue. Test script: --------------- php-fpm.debug objdump file: http://www.mediafire.com/?qbkjzbidj9b1zsr PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 08:00:01 2025 UTC |
The error format I get when I restart the php-fpm service: # service php-fpm restart Stopping php-fpm: [ OK ] Starting php-fpm: /bin/bash: line 1: 20659 Segmentation fault /usr/sbin/php- fpm -y /etc/php-fpm/php-fpm.conf [FAILED]Some additional troubleshooting: # DAEMON_COREFILE_LIMIT=unlimited strace -s 1024 -f /etc/init.d/php-fpm restart 2>&1 | grep -i SEGV [pid 21884] --- SIGSEGV (Segmentation fault) @ 0 (0) --- [pid 21883] <... wait4 resumed> [{WIFSIGNALED(s) && WTERMSIG(s) == SIGSEGV && WCOREDUMP(s)}], 0, NULL) = 21884 The above error occurs on a regular basis, no matter how many times I run the strace: # DAEMON_COREFILE_LIMIT=unlimited strace -s 1024 -f /etc/init.d/php-fpm restart 2>&1 | grep -i SEGV [pid 21914] --- SIGSEGV (Segmentation fault) @ 0 (0) --- [pid 21913] <... wait4 resumed> [{WIFSIGNALED(s) && WTERMSIG(s) == SIGSEGV && WCOREDUMP(s)}], 0, NULL) = 21914 I believe it could be related to this bug: https://bugs.php.net/bug.php?id=61231