child pid XXXX exit signal Segmentation fault (11)

Guillermo

Verified User
Joined
May 20, 2006
Messages
95
Location
The Netherlands
I keep getting this error in my apache_error log


Quote:
[Thu Jun 01 09:35:06 2006] [notice] child pid 27084 exit signal Segmentation fault (11)
[Thu Jun 01 09:35:06 2006] [notice] child pid 27197 exit signal Segmentation fault (11)
[Thu Jun 01 09:35:08 2006] [notice] child pid 26936 exit signal Segmentation fault (11)
[Thu Jun 01 09:35:08 2006] [notice] child pid 27199 exit signal Segmentation fault (11)
[Thu Jun 01 09:35:09 2006] [notice] child pid 27208 exit signal Segmentation fault (11)
[Thu Jun 01 09:35:09 2006] [notice] child pid 27212 exit signal Segmentation fault (11)
[Thu Jun 01 09:35:09 2006] [notice] child pid 27213 exit signal Segmentation fault (11)
[Thu Jun 01 09:35:10 2006] [notice] child pid 27214 exit signal Segmentation fault (11)
[Thu Jun 01 09:35:10 2006] [notice] child pid 27220 exit signal Segmentation fault (11)
[Thu Jun 01 09:35:10 2006] [notice] child pid 27231 exit signal Segmentation fault (11)
[Thu Jun 01 09:35:11 2006] [notice] child pid 26795 exit signal Segmentation fault (11)
[Thu Jun 01 09:35:11 2006] [notice] child pid 27073 exit signal Segmentation fault (11)
[Thu Jun 01 09:35:11 2006] [notice] child pid 27217 exit signal Segmentation fault (11)
[Thu Jun 01 09:35:11 2006] [notice] child pid 27229 exit signal Segmentation fault (11)
[Thu Jun 01 09:35:11 2006] [notice] child pid 27232 exit signal Segmentation fault (11)
[Thu Jun 01 09:35:11 2006] [notice] child pid 27233 exit signal Segmentation fault (11)
[Thu Jun 01 09:35:11 2006] [notice] child pid 27234 exit signal Segmentation fault (11)
[Thu Jun 01 09:35:11 2006] [notice] child pid 27235 exit signal Segmentation fault (11)
[Thu Jun 01 09:35:12 2006] [notice] child pid 27225 exit signal Segmentation fault (11)
[Thu Jun 01 09:35:13 2006] [notice] child pid 27236 exit signal Segmentation fault (11)
[Thu Jun 01 09:35:13 2006] [notice] child pid 27244 exit signal Segmentation fault (11)
[Thu Jun 01 09:35:14 2006] [notice] child pid 27160 exit signal Segmentation fault (11)
[Thu Jun 01 09:35:14 2006] [notice] child pid 27180 exit signal Segmentation fault (11)
[Thu Jun 01 09:35:15 2006] [notice] child pid 27079 exit signal Segmentation fault (11)
[Thu Jun 01 09:35:15 2006] [notice] child pid 27179 exit signal Segmentation fault (11)
[Thu Jun 01 09:35:15 2006] [notice] child pid 27181 exit signal Segmentation fault (11)
[Thu Jun 01 09:35:15 2006] [notice] child pid 27182 exit signal Segmentation fault (11)
[Thu Jun 01 09:35:15 2006] [notice] child pid 27237 exit signal Segmentation fault (11)
[Thu Jun 01 09:35:15 2006] [notice] child pid 27247 exit signal Segmentation fault (11)
[Thu Jun 01 09:35:15 2006] [notice] child pid 27250 exit signal Segmentation fault (11)



etc. etc.
The server is up for 9 days now, and the apache error log is already 54 MB!

What does that error mean, and how do i fix it?

I use:

Linux version: Centos 4.3 64-bit, 2.6.16.17
Controlpanel: DirectAdmin

Apache version: Apache 2.0.58 Server
PHP version: 4.4.2
Zend Engine v1.3.0
Eaccelerator 0.9.3
DirectAdmin 1.27.1
Exim 4.60
MySQL 5.0.15
Named 9.2.4
ProFTPd 1.3.0rc2
vm-Pop3d 1.1.7f-DA-2
sshd
 
That error means that something inside of Apache/Php was trying to access memory it doesn't own, or there was a NULL pointer. There are many reasons on why that would happen, too many to tell what your exact problem is.

Do you know if it happens with all web pages or just php pages. Try removing the Eaccelerator, or any php modules and see if the problem continues. It is possible that Eaccelerator didn't get compiled correctly for your specific version of Apache/Php, do a make clean, redo the phpize and rebuild.
 
Thanks for the golden tip Tom. I disabled eaccelerator's caching of php scripts and optimization of php scripts.
Now i don't get any errors anymore. Though, i want eaccelerator running, any idea how to fix this eaccelerator problem?
 
Try rebuilding it from scratch. It is version specific, so you can just update php and expect it to work. Since that it the problem, do as I said in my last post, a make clean, phpize and rebuild.
 
Back
Top