我在iMac上使用带有iMac的瘦RoR服务器。我是从工头开始的
它运行得很好,但现在我在控制台上看到了这个:
09:27:10 web.1 | => Booting Thin
09:27:10 web.1 | => Rails 3.1.3 application starting in development on http://0.0.0.0:5000
09:27:10 web.1 | => Call with -d to detach
09:27:10 web.1 | => Ctrl-C to shutdown server
09:27:10 web.1 | >> Thin web server (v1.3.1 codename Triple Espresso)
09:27:10 web.1 | >> Maximum connections set to 1024
09:27:10 web.1 | >> Listening on 0.0.0.0:5000, CTRL+C to stop
09:27:10 web.1 | Exiting
09:27:11 web.1 | process terminated
09:27:11 system | sending SIGTERM to all processes并且出现$提示符--因此isn服务器没有运行。
有什么想法吗?
我只花了一大笔钱就得到了:
使用机架适配器/Users/burtondav/.rvm/gems/ruby-1.9.2-p290/gems/bundler-1.0.22/lib/bundler/runtime.rb:31:in“安装中的块”:您已经激活了机架1.4.1,但是您的Gemfile需要机架1.3.6。使用bundle exec可以解决这一问题。(宝石::LoadError)
我应该尝试使用哪个bundle exec命令?
发布于 2012-12-11 17:20:33
将gem 'thin'添加到应用程序Gemfile中,并执行bundle exec thin start以解决版本冲突问题。
https://stackoverflow.com/questions/13824396
复制相似问题