6

I have Lighttpd on Centos 5 with Fcgi and Memcached. Periodically, once per week or two i get internal server error 500 and i must manually restart lighttpd to get it to work again.

In my lighttpd config I've defined error log file:

server.errorlog             = "/home/lxadmin/httpd/lighttpd/error.log"

But when I open it, it has no rows for last days, only one month ago.

So my question is how to diagnose what is the issue and how to enable error log for my configuration?

Tom Smykowski
  • 1,115
  • 5
  • 19
  • 27

2 Answers2

3

Edit:

nano /etc/lighttpd/lighttpd.conf

And put:

fastcgi.debug = 1
Tom Smykowski
  • 1,115
  • 5
  • 19
  • 27
1

My guess is that the problem is related with trouble connecting with the fcgi processes. Have you tried to strace lighttpd process when the internal server errors are happening? That should give you a clue of what's happening. Try something like this:

strace -p `pidof lighttpd` -o strace.output

then take a look at strace.output.

Hope this helps.

kasperd
  • 29,894
  • 16
  • 72
  • 122
Marco Ramos
  • 3,100
  • 22
  • 25