15 Aug
2006
15 Aug
'06
4:11 p.m.
On Tue, Aug 15, 2006 at 11:47:32AM -0400, Asif Iqbal wrote:
Have you checked the webserver logs for any errors?
Not until now :-)
[Fri Aug 4 15:06:54 2006] [error] [client 155.70.141.45] Premature end of script headers: /export/home/hobbit/cgi-bin/bb-hostsvc.sh
Seems like the CGI is crashing. Could you edit the ~hobbit/cgi-bin/bb-hostsvc.sh file and add these two lines
cd /tmp
ulimit -c 1024000
just before the "exec ..." line ? Then make your browser try and fetch the status page, and it should dump a core-file in /tmp/core* . Run that through gdb with
$ gdb ~hobbit/server/bin/hobbitsvc.cgi /tmp/core* ... gdb> bt
and lets see what it says.
Regards, Henrik