Content
Error start server
Added by Lucas Pereira over 10 years ago
2.11. Start application server¶
bundle exec rails server RAILS_ENV=production
require ‘rails/all’… 0.530s
Bundler.require… 2.580s
Exiting
/var/lib/gems/2.1.0/gems/activesupport-3.2.17/lib/active_support/dependencies.rb:251:in `require’: cannot load such file — rack/handler/rails__env=production (LoadError)
from /var/lib/gems/2.1.0/gems/activesupport-3.2.17/lib/active_support/dependencies.rb:251:in `block in require’
from /var/lib/gems/2.1.0/gems/activesupport-3.2.17/lib/active_support/dependencies.rb:236:in `load_dependency’
from /var/lib/gems/2.1.0/gems/activesupport-3.2.17/lib/active_support/dependencies.rb:251:in `require’
from /var/lib/gems/2.1.0/gems/rack-1.4.5/lib/rack/handler.rb:63:in `try_require’
from /var/lib/gems/2.1.0/gems/rack-1.4.5/lib/rack/handler.rb:16:in `get’
from /var/lib/gems/2.1.0/gems/rack-1.4.5/lib/rack/server.rb:272:in `server’
from /var/lib/gems/2.1.0/gems/railties-3.2.17/lib/rails/commands/server.rb:59:in `start’
from /var/lib/gems/2.1.0/gems/railties-3.2.17/lib/rails/commands.rb:55:in `block in <top (required)>’
from /var/lib/gems/2.1.0/gems/railties-3.2.17/lib/rails/commands.rb:50:in `tap’
from /var/lib/gems/2.1.0/gems/railties-3.2.17/lib/rails/commands.rb:50:in `<top (required)>’
from script/rails:6:in `require’
from script/rails:6:in `
’
What are happened?
Thanks
Lucas
Replies (6)
root@tec:/var/www/openproject# rake —dry-run
require ‘rails/all’… 0.550s
Bundler.require… 2.550s
**** Invoke default (first_time)
**** Invoke test:suite:run (first_time)
**** Invoke cucumber (first_time)
**** Invoke cucumber:ok (first_time)
**** Invoke db:test:prepare (first_time)
**** Invoke db:abort_if_pending_migrations (first_time)
**** Invoke environment (first_time)
**** Execute (dry run) environment
**** Invoke db:load_config (first_time)
**** Execute (dry run) db:load_config
**** Execute (dry run) db:abort_if_pending_migrations
**** Execute (dry run) db:test:prepare
**** Execute (dry run) cucumber:ok
**** Execute (dry run) cucumber
**** Invoke spec (first_time)
**** Invoke test:prepare (first_time)
**** Invoke db:test:prepare
**** Execute (dry run) test:prepare
**** Execute (dry run) spec
**** Invoke test (first_time)
**** Execute (dry run) test
**** Execute (dry run) test:suite:run
**** Execute (dry run) default
But if I “run bundle exec rails server -d”, server start Ok.
root@tec:/var/www/openproject# bundle exec rails server
require ‘rails/all’… 0.510s
Bundler.require… 2.540s
=> Booting Thin
=> Rails 3.2.17 application starting in development on http://0.0.0.0:3000
=> Call with -d to detach
=> Ctrl-C to shutdown server
Application.initialize!… 4.840s
Thanks
try:
RAILS_ENV=production bundle exec rails server
that is it
Thanks.
root@tec:/var/www/openproject# RAILS_ENV=production bundle exec rails server
require ‘rails/all’… 0.500s
Bundler.require… 1.450s
=> Booting Thin
=> Rails 3.2.17 application starting in production on http://0.0.0.0:3000
=> Call with -d to detach
=> Ctrl-C to shutdown server
Application.initialize!… /var/lib/gems/2.1.0/gems/svg-graph-1.0.5/lib/SVG/Graph/Graph.rb:3: warning: class variable access from toplevel
5.450s
But pages didn’t open ok, didn’t show images…
I intalled OpenPrijec in Debian 7.4 and this problem didn’t happen.
thanks