Deploying rails application. Getting 500 errors
Trying to deploy my rails application but when access through web I'm getting 500 error saying that
The application spawner server exited unexpectedly: Unexpected end-of-file detected.
Exception class:
PhusionPassenger::Railz::ApplicationSpawner::Error
I googled the whole internet but found only couple of guys who had the same problem. One of them had it related to improper installation of facebooker gem, but I don't even have it.
Any ideas? I've been struggling with it past hours
I'm using
ruby 1.9.1p378 passenger-2.2.15 + nginx
* LOCAL GEMS *
ac开发者_StackOverflowtionmailer (2.3.8)
actionpack (2.3.8) activerecord (2.3.8) activeresource (2.3.8) activesupport (2.3.8) fastthread (1.0.7) rack (1.1.0) rails (2.3.8) rake (0.8.7) rubygems-update (1.3.7) sqlite3-ruby (1.3.1)Fixed. It looks like I just forgot to do rake RAILS_ENV=production db:schema:load on deployment server.
精彩评论