Help debugging Apache, Passenger and Rails problem

Posted by Matt Dressel on Stack Overflow See other posts from Stack Overflow or by Matt Dressel
Published on 2010-04-03T18:08:02Z Indexed on 2010/04/03 18:13 UTC
Read the original article Hit count: 229

Filed under:
|
|

We have an environment running that uses Apache, Passenger and rails. The system is handling most request normally, yet certain requests do not make it to the rails application. For instance, a request to /books is successful, but /books/1 hits apache and passenger, but does not even make it to rails.

We set the apache log level to debug and the passenger log level to 3 so that we could monitor all incoming requests. We could see each request coming through and even the /books/1 request is being handled by passenger. But it never gets to rails.

Is there any way to determine where the request goes between Passenger and rails or where debugging information might live? Has anyone ever seen any problems with passenger spawning or queuing? We have spawning set to conservative. Also, we have had some permission/ownership problems in the past, so I am not ruling this out yet.

Thanks in advance

© Stack Overflow or respective owner

Related posts about ruby-on-rails

Related posts about passenger