John, On Dec 13, 2010, at 6:25 AM, John Poole wrote:
> Reading symbols from /usr/sbin/apache2...(no debugging symbols found)...done. > (gdb) run > Starting program: /usr/sbin/apache2 > [Thread debugging using libthread_db enabled] > > Program received signal SIGSEGV, Segmentation fault. > 0x402910e4 in apr_palloc () from /usr/lib/libapr-1.so.0 Two requests: 1) could you send a backtrace (bt) taken after the segfault and 2) try this on a copy of Apache compiled with debug symbols: CFLAGS="-DDEBUG -O0"; export CFLAGS ./configure --prefix=/somewhere (...) --enable-maintainer-mode (...) make make install You don't seem to get far enough for Apache to fork() its child processes, but if you want to prevent forking you can tell gdb to run -X Thanks, S. -- [email protected] http://www.temme.net/sander/ PGP FP: FC5A 6FC6 2E25 2DFD 8007 EE23 9BB8 63B0 F51B B88A View my availability: http://tungle.me/sctemme
