2013-12-12 21 views
5

我跟着this教程設置了rvm,ruby,rails,nginx和passenger。然後我安裝了capistrano和node.js.現在,一切工作正常起來的地方,我嘗試部署* test_app點*Capistrano部署錯誤:沒有設置階段

cap deploy:setup 

創建下列錯誤:

[deprecated] I18n.enforce_available_locales will default to true in the future. If you really want to skip validation of your locale you can set I18n.enforce_available_locales = false to avoid this message. 
Stage not set, please call something such as `cap production deploy`, where production is a stage you have defined. 
現在

cap production deploy 

造成此錯誤:

cap aborted! 
RVM - Capistrano integration was extracted to a separate gem, install: `gem install rvm-capistrano` and remove the `$LOAD_PATH.unshift` line, note also the 'set :rvm_type, :user' is now the default (instead of :system). 
/home/USER/.rvm/lib/rvm/capistrano.rb:3:in `<top (required)>' 
config/deploy.rb:5:in `<top (required)>' 
/home/USER/.rvm/gems/ruby-2.0.0-p353/gems/capistrano-3.0.1/lib/capistrano/setup.rb:12:in `load' 
/home/USER/.rvm/gems/ruby-2.0.0-p353/gems/capistrano-3.0.1/lib/capistrano/setup.rb:12:in `block (2 levels) in <top (required)>' 
/home/USER/.rvm/gems/ruby-2.0.0-p353/gems/capistrano-3.0.1/lib/capistrano/application.rb:12:in `run' 
/home/USER/.rvm/gems/ruby-2.0.0-p353/gems/capistrano-3.0.1/bin/cap:3:in `<top (required)>' 
/home/USER/.rvm/gems/ruby-2.0.0-p353/bin/cap:23:in `load' 
/home/USER/.rvm/gems/ruby-2.0.0-p353/bin/cap:23:in `<main>' 
/home/USER/.rvm/gems/ruby-2.0.0-p353/bin/ruby_executable_hooks:15:in `eval' 
/home/USER/.rvm/gems/ruby-2.0.0-p353/bin/ruby_executable_hooks:15:in `<main>' 
Tasks: TOP => production 
(See full trace by running task with --trace) 

所以我做了什麼建議,安裝RVM-Capistrano酒店和刪除* $ :.不印字(File.expand_path( './ LIB',ENV [ 'rvm_path']))*,從而創立了以下錯誤:

cap production deploy 
cap aborted! 
Unable to activate rvm-capistrano-1.5.1, because capistrano-3.0.1 conflicts with capistrano (~> 2.15.4) 
config/deploy.rb:5:in `<top (required)>' 
/home/USER/.rvm/gems/ruby-2.0.0-p353/gems/capistrano-3.0.1/lib/capistrano/setup.rb:12:in `load' 
/home/USER/.rvm/gems/ruby-2.0.0-p353/gems/capistrano-3.0.1/lib/capistrano/setup.rb:12:in `block (2 levels) in <top (required)>' 
/home/USER/.rvm/gems/ruby-2.0.0-p353/gems/capistrano-3.0.1/lib/capistrano/application.rb:12:in `run' 
/home/USER/.rvm/gems/ruby-2.0.0-p353/gems/capistrano-3.0.1/bin/cap:3:in `<top (required)>' 
/home/USER/.rvm/gems/ruby-2.0.0-p353/bin/cap:23:in `load' 
/home/USER/.rvm/gems/ruby-2.0.0-p353/bin/cap:23:in `<main>' 
/home/USER/.rvm/gems/ruby-2.0.0-p353/bin/ruby_executable_hooks:15:in `eval' 
/home/USER/.rvm/gems/ruby-2.0.0-p353/bin/ruby_executable_hooks:15:in `<main>' 
Tasks: TOP => production 
(See full trace by running task with --trace) 

有什麼建議嗎?

+0

嘗試運行'捆綁高管帽生產deploy' – Kashyap

+0

這產生了以下錯誤: '/ home/user中/。 rvm/gems/[email protected]/gems/bundler-1.3.5/lib/bundler/rubygems_integration.rb:214:在'block in replace_gem'中:capistrano不是捆綁的一部分。將它添加到Gemfile。 (Gem :: LoadError) \t from /home/USER/.rvm/gems/ruby-2.0.0-p353/bin/cap:22:in'

' \t from /home/USER/.rvm/gems/ ruby-2.0.0-p353/bin/ruby​​_executable_hooks:15:'eval' \t from /home/USER/.rvm/gems/ruby-2.0.0-p353/bin/ruby_executable_hooks:15:in'
' ' – user3094719

+0

你在文件夾中有'Gemfile'嗎? – Kashyap

回答