Bruce Dou
Bruce Dou

Reputation: 4771

Apache LOG: child pid xxxx exit signal Segmentation fault (11)

Apache + PHP + Mysql + Linux

[notice] child pid 23145 exit signal Segmentation fault (11), possible coredump in /tmp

But nothing found under /tmp

How can i find the error?

Upvotes: 6

Views: 27472

Answers (2)

Gen.Stack
Gen.Stack

Reputation: 246

Check whether your PHP-FPM and PHP versions match. Make sure there is a (correct) PHP-FPM configuration corresponding to your PHP and PHP-FPM version, respectively.

PHP-FPM (config in /etc/php/7.0/fpm) and PHP versions may have gotten out of sync while updating. Updated PHP (/etc/php/7.3/) may cause apache child segfaults because of missing PHP-FPM configuration in /etc/php/7.3/.

See also “[notice] child pid XXXX exit signal Segmentation fault (11)” in apache error.log .

Upvotes: 1

Bruce Dou
Bruce Dou

Reputation: 4771

Endless loop of the function in PHP code caused this error.

Upvotes: 10

Related Questions