web-dev-qa-db-ja.com

Railsでcapistrano 3.8.0の 'cap production deploy'を実行するときにタスク 'start'をビルドする方法がわからない

私はRails capistranoを使用してサイトを展開しようとしました。

cap production deploy

これは私が得たものです

(Backtrace restricted to imported tasks)
cap aborted!
Don't know how to build task 'start' (see --tasks)

Tasks: TOP => production

これは私のキャップファイルです

# Load DSL and Setup Up Stages
require 'capistrano/setup'
require 'capistrano/deploy'

require 'capistrano/Rails'
require 'capistrano/bundler'
require 'capistrano/rvm'
require 'capistrano/puma'
require 'capistrano/scm/git'

install_plugin Capistrano::SCM::Git

# Loads custom tasks from `lib/capistrano/tasks' if you have any defined.
Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }

これは私のdeploy.rbです

set :repo_url,        'xxx'
set :application,     'xxx'
set :user,            'yyy'
set :puma_threads,    [4, 16]
set :puma_workers,    0

set :pty,             true
set :use_Sudo,        false
set :stages,          ["staging", "production"]
set :default_stage,   "production"
set :deploy_via,      :remote_cache
set :deploy_to,       "/home/#{fetch(:user)}/apps/#{fetch(:application)}"
set :puma_bind,       "unix://#{shared_path}/tmp/sockets/#{fetch(:application)}-puma.sock"
set :puma_state,      "#{shared_path}/tmp/pids/puma.state"
set :puma_pid,        "#{shared_path}/tmp/pids/puma.pid"
set :puma_access_log, "#{release_path}/log/puma.error.log"
set :puma_error_log,  "#{release_path}/log/puma.access.log"
set :ssh_options,     { forward_agent: true, user: fetch(:user), keys: %w(~/.ssh/id_rsa) }
set :puma_preload_app, true
set :puma_worker_timeout, nil
set :puma_init_active_record, true  # Change to false when not using ActiveRecord

namespace :puma do
  desc 'Create Directories for Puma Pids and Socket'
  task :make_dirs do
    on roles(:app) do
      execute "mkdir #{shared_path}/tmp/sockets -p"
      execute "mkdir #{shared_path}/tmp/pids -p"
    end
  end

  before :start, :make_dirs
end

namespace :deploy do
  desc "Make sure local git is in sync with remote."
  task :check_revision do
    on roles(:app) do
      unless `git rev-parse HEAD` == `git rev-parse Origin/master`
        puts "WARNING: HEAD is not the same as Origin/master"
        puts "Run `git Push` to sync changes."
        exit
      end
    end
  end

  desc 'Initial Deploy'
  task :initial do
    on roles(:app) do
      before 'deploy:restart', 'puma:start'
      invoke 'deploy'
    end
  end

  desc 'Restart application'
  task :restart do
    on roles(:app), in: :sequence, wait: 5 do
      invoke 'puma:restart'
    end
  end

  before :starting,     :check_revision
  after  :finishing,    :compile_assets
  after  :finishing,    :cleanup
end

したがって、上記のコードは以前は機能していましたが、gemを更新すると、アプリを展開できなくなります。

どうすればこれを修正できますか?

ありがとう!

24

install_plugin Capistrano::Pumaの後に、Capfilerequire 'capistrano/puma'を追加します。

capistrano3-pumaは数日前に3.0に移行しました。この行は、このバージョンでデフォルトのPumaタスクをロードするために必要です。

https://github.com/seuros/capistrano-puma#usage を参照してください

86
Jin

この2行はCapfileにあるはずです。また、この変更は最近のPumaバージョンgem 'capistrano3-puma'で行われます。

require 'capistrano/puma'
install_plugin Capistrano::Puma  # Default puma tasks

Capfileで記述されている階層構造に注意してください。これは、プーマタスクをcapにロードするのに役立ちます。 cap -Tを使用してcapistranoタスクをリストできます。上記の2行でCapfileを更新したら、pumaに関連するタスクも探します。

詳細については、 https://github.com/seuros/capistrano-puma#usage を参照してください

0
V K Singh