500 Internal Server Error after OS-Upgrade
Added by Chris J almost 14 years ago
I've did an OS upgrade yesterday (Ubuntu). Since then, Redmine doesnt work anymore. I'm getting HTTP 500 errors all the time. The log files are empty; the web server log file just states that the fastcgi process has died.
What happened? Ruby, Rails and rake are still the correct versions, and the configuration hasn't been touched. How to get Redmine giving me more details on what's happening? I've added config.log_level = :debug to the additional_environment thing, but the log file is still empty.
Any advice is welcome.
Replies (5)
RE: 500 Internal Server Error after OS-Upgrade - Added by Felix Schäfer almost 14 years ago
Have you been serving redmine through fastcgi before?
RE: 500 Internal Server Error after OS-Upgrade - Added by Chris J almost 14 years ago
Yes, I did. It's used along with lighttpd. Actually it seems that the fastcgi process (dispatch.fcgi) is started, but the Webserver logs about EOF on the UNIX domain socket created by redmine's dispatcher. I don't have an fastcgi.crash log file at all.
RE: 500 Internal Server Error after OS-Upgrade - Added by Felix Schäfer almost 14 years ago
I don't have any experience with (f(ast))cgi, sorry. IIRC you can run the file by hand to have a look at its output, but don't ask me how :-)
RE: 500 Internal Server Error after OS-Upgrade - Added by Etienne Massip almost 14 years ago
Does RedMine work normal when ran by webrick ?
RE: 500 Internal Server Error after OS-Upgrade - Added by Chris J almost 14 years ago
After some testing, I'll found the solution. The OS-upgrade removed the fcgi ruby module. Webrick worked fine, and running the fcgi via command line told me that the fcgi module was missing. Installing the libfcgi-ruby1.8
package solved the Problem.
Thanks a lot for the suggestions. :)