Basically I have setup local site, and pointed a TLD
to that location for development purposes. But now I have a problem, because I can only load the website exactly once, subsequent attempts to access the site gets a no data received
page in Chrome. And the following error gets logged:
[Fri Nov 01 11:23:33 2013] [notice] child pid 4988 exit signal Segmentation fault (11), possible coredump in /etc/apache2
I then restart apache, and can load the website again for one time. And if I reload it, I am back to situation mentioned above... Any ideas?
PS. It is exact same situation regardless of I try to access it using the TLD
or localhost
address.
EDIT:
Ok I have examined the crash using the gdb
, so it appears to do something with libc.so.6
.. here is the backtrace:
(gdb) backtrace
#0 0x00007f72c113b94a in waitpid () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x0000000000441c84 in ?? ()
#2 0x0000000000442d0c in wait_for ()
#3 0x0000000000434684 in execute_command_internal ()
#4 0x000000000043618e in execute_command ()
#5 0x000000000041e3ed in reader_loop ()
#6 0x000000000041c906 in main ()
Any ideas what in PHP/Codeigiter uses this library? What could I disable?