我有一个capistrano 3.4.0脚本已经成功部署了多年的应用程序。但是今天我更新了RVM并尝试部署我的rails应用程序,我将升级到Rails 5.1.4。 Capistrano似乎在第一部分运作良好,但随后抛出了这个错误......
cd /srv/www/my_app/releases/20180124210207 && ~/.rvm/bin/rvm default do bundle install --path /srv/www/my_app/shared/bundle --without development test --deployment --verbose
DEBUG [14a8f315] /usr/lib/ruby/1.9.1/rubygems/dependency.rb:247:in `to_specs'
DEBUG [14a8f315] :
DEBUG [14a8f315] Could not find bundler (>= 0) amongst [bundler-unload-1.0.2, did_you_mean-1.1.0, executable-hooks-1.3.2, gem-wrappers-1.3.2, minitest-5.10.1, net-telnet-0.1.1, passenger-5.1.12, power_assert-0.4.1, rack-2.0.3, rake-12.0.0, rubygems-bundler-1.4.4, rvm-1.11.3.9, test-unit-3.2.3, xmlrpc-0.2.1]
DEBUG [14a8f315] (
DEBUG [14a8f315] Gem::LoadError
DEBUG [14a8f315] )
显然我不想使用ruby 1.9.1,当我进入linux并且执行ruby -v时它会说Ruby 2.4.1。我使用
将其设置为默认值rvm get stable
rvm install ruby 2.4.1
sudo rvm --default use 2.4.1
我还使用了capistrano-rvm gem,当capistrano脚本开始部署时,它说
DEBUG [081254bd] Command: ~/.rvm/bin/rvm current
DEBUG [081254bd] ruby-2.4.1
DEBUG [081254bd] Finished in 2.704 seconds with exit status 0 (successful).
DEBUG [e45e0d6b] Command: ~/.rvm/bin/rvm version
DEBUG [e45e0d6b] rvm 1.29.3 (latest) by Michal Papis, Piotr Kuczynski, Wayne E. Seguin [https://rvm.io]
为什么在部署过程中会切换到ruby 1.9.1?如何让它使用我的默认ruby版本2.4.1?
答案 0 :(得分:1)
必须执行以下操作才能使其正常运行...
sudo chown -R your_user /home/deployer/.rvm
gem install bundler
然后运行capistrano脚本。