2016-09-07 135 views
0
当我使用 ruby script/server命令我的rails服务器启动

,我得到如下回应Rails的服务器503服务不可用错误

=> Booting WEBrick 
=> Rails 2.3.9 application starting on http://0.0.0.0:3000 
/home/ubuntu/.rvm/gems/[email protected]/gems/rails-2.3.9/lib/rails/gem_dependency.rb:21:in `add_frozen_gem_path': undefined method `source_index' for Gem:Module (NoMethodError) 
     from /home/ubuntu/.rvm/gems/[email protected]/gems/rails-2.3.9/lib/initializer.rb:298:in `add_gem_load_paths' 
     from /home/ubuntu/.rvm/gems/[email protected]/gems/rails-2.3.9/lib/initializer.rb:132:in `process' 
     from /home/ubuntu/.rvm/gems/[email protected]/gems/rails-2.3.9/lib/initializer.rb:113:in `send' 
     from /home/ubuntu/.rvm/gems/[email protected]/gems/rails-2.3.9/lib/initializer.rb:113:in `run' 
     from /home/ubuntu/apps/moogle/config/environment.rb:13 
     from /home/ubuntu/.rvm/gems/[email protected]/gems/activesupport-2.3.9/lib/active_support/dependencies.rb:182:in `require' 
     from /home/ubuntu/.rvm/gems/[email protected]/gems/activesupport-2.3.9/lib/active_support/dependencies.rb:182:in `require' 
     from /home/ubuntu/.rvm/gems/[email protected]/gems/activesupport-2.3.9/lib/active_support/dependencies.rb:547:in `new_constants_in' 
     from /home/ubuntu/.rvm/gems/[email protected]/gems/activesupport-2.3.9/lib/active_support/dependencies.rb:182:in `require' 
     from /home/ubuntu/.rvm/gems/[email protected]/gems/rails-2.3.9/lib/commands/server.rb:84 
     from script/server:3:in `require' 
     from script/server:3 

我使用ProxyPreseve像

<VirtualHost *:80> 
ProxyPreserveHost On 
    ProxyPass/http://0.0.0.0:3000/ 
    ProxyPassReverse/http://0.0.0.0:3000/ 
    ServerName localhost 
</VirtualHost> 

而且我得到503服务不可用的错误。任何人都可以告诉我我的应用程序有什么问题吗?

Rails的版本:2.3.9 的Ruby版本:1.8.7-P374 包版本:1.12.5 宝石版本:2.0.17

+0

只是为了确认:你真的想在Ruby 1.8.7上运行Rails 2.3.9吗? – spickermann

+0

@spickermann - 是的,没错。 – lock

+0

'rubygems'版本有问题http://stackoverflow.com/questions/15349869/undefined-method-source-index-for-gemmodule-nomethoderror –

回答

1

您需要降级rubygems版本

gem update --system 1.8.25 

参考相同问题的解决方案here

+0

这解决了问题队友,谢谢一吨:) – lock

相关问题