Capistrano v3 でアプリをデプロイする際に問題があります。「$ cap production deploy」を実行すると、エラーが表示されます...
INFO [825ad68d] Running /usr/bin/env bundle --gemfile /home/username/www/myapp/releases/20131026181031/Gemfile --path /home/username/www/myapp/shared/bundle --deployment --quiet --binstubs /home/username/www/myapp/shared/bin --without development test on myhostname.com
DEBUG [825ad68d] Command: cd /home/username/www/myapp/releases/20131026181031 && ( RAILS_ENV=production /usr/bin/env bundle --gemfile /home/username/www/myapp/releases/20131026181031/Gemfile --path /home/username/www/myapp/shared/bundle --deployment --quiet --binstubs /home/username/www/myapp/shared/bin --without development test )
DEBUG [825ad68d] /usr/bin/env:
DEBUG [825ad68d] bundle
DEBUG [825ad68d] : No such file or directory
しかし、最後のコマンドを実行すると...
cd /home/username/www/myapp/releases/20131026181031 && ( RAILS_ENV=production /usr/bin/env bundle --gemfile /home/username/www/myapp/releases/20131026181031/Gemfile --path /home/username/www/myapp/shared/bundle --deployment --quiet --binstubs /home/username/www/myapp/shared/bin --without development test )
... サーバーで ssh を使用しても、エラーは表示されません。
これが私のサーバーの環境です:
- Ubuntu 13.04
- rvm1.23.5
- rubygems 1.8.25
- バンドラー 1.3.5
- ルビー 1.9.3p448
- カピストラーノ (3.0.0)
- カピストラーノバンドラー (1.0.0)
- カピストラーノレール (1.0.0)
カピストラーノの宝石を含む私のGemfileの一部です
...
group :development do
...
# Deploy with Capistrano
gem 'capistrano', '~> 3.0.0'
gem 'capistrano-rails'
gem 'capistrano-bundler'
end
...
以下の capistrano の構成を参照してください。
キャップファイル
require 'capistrano/setup'
require 'capistrano/deploy'
require 'capistrano/bundler'
require 'capistrano/rails/assets'
require 'capistrano/rails/migrations'
Dir.glob('lib/capistrano/tasks/*.cap').each { |r| import r }
config/deploy.rb
set :application, 'myapp'
set :repo_url, "/home/username/repository/#{fetch(:application)}.git"
set :deploy_to, "/home/usename/www/#{fetch(:application)}"
set :scm, :git
set :branch, "master"
set :format, :pretty
set :use_sudo, false
set :linked_files, %w{config/database.yml}
set :linked_dirs, %w{bin log tmp/pids tmp/cache tmp/sockets vendor/bundle public/system}
set :keep_releases, 5
SSHKit.config.command_map[:rake] = "bundle exec rake"
SSHKit.config.command_map[:rails] = "bundle exec rails"
namespace :deploy do
desc 'Restart application'
task :restart do
on roles(:app), in: :sequence, wait: 5 do
# Your restart mechanism here, for example:
# execute :touch, release_path.join('tmp/restart.txt')
end
end
after :restart, :clear_cache do
on roles(:web), in: :groups, limit: 3, wait: 10 do
# Here we can do anything such as:
# within release_path do
# execute :rake, 'cache:clear'
# end
end
end
after :finishing, 'deploy:cleanup'
end
構成/デプロイ/production.rb
set :stage, :production
set :bundle_gemfile, -> { release_path.join('Gemfile') }
set :bundle_dir, -> { shared_path.join('bundle') }
set :bundle_flags, '--deployment --quiet'
set :bundle_without, %w{development test}.join(' ')
set :bundle_binstubs, -> { shared_path.join('bin') }
set :bundle_roles, :all
role :app, %w{myhostname.com}
role :web, %w{myhostname.com}
role :db, %w{myhostname.com}
server 'myhostname.com', user: 'username', roles: %w{web app}, my_property: :my_value
fetch(:default_env).merge!(rails_env: :production)
私を助けてください。
解決した
次の手順で問題を解決しました。
capistrano-rvm を Gemfile に追加して実行
...
group :development do
...
gem 'capistrano', '~> 3.0.0'
gem 'capistrano-rails'
gem 'capistrano-bundler'
gem 'capistrano-rvm'
end
...
この行を Capfile に追加します
require 'capistrano/rvm'
これらの行をdeploy.rbファイルに追加します。
set :rvm_ruby_version, '1.9.3-p448'
set :default_env, { rvm_bin_path: '~/.rvm/bin' }
SSHKit.config.command_map[:rake] = "#{fetch(:default_env)[:rvm_bin_path]}/rvm ruby-#{fetch(:rvm_ruby_version)} do bundle exec rake"