使用 Rails 为 capistrano 3.8.0 运行“cap production deploy”时不知道如何构建任务“start”

Posted

技术标签:

【中文标题】使用 Rails 为 capistrano 3.8.0 运行“cap production deploy”时不知道如何构建任务“start”【英文标题】:Don't know how to build task 'start' when run 'cap production deploy' for capistrano 3.8.0 with Rails 【发布时间】:2017-08-18 07:21:12 【问题描述】:

我尝试使用 capistrano 部署我的 Rails 站点。 所以当我跑的时候

cap production deploy

这就是我得到的

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

Tasks: TOP => production

这是我的 cap 文件

# 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 时,我无法再部署我的应用程序了。

那么我该如何解决这个问题?

谢谢!

【问题讨论】:

【参考方案1】:

require 'capistrano/puma'之后将install_plugin Capistrano::Puma添加到您的Capfile中。

capistrano3-puma 几天前移至 3.0。在此版本中加载默认 puma 任务需要此行。

见https://github.com/seuros/capistrano-puma#usage

【讨论】:

谢谢。你能告诉我们你是如何解决这个问题的吗?因为错误信息太隐蔽了? @sandre89 在这种情况发生前几周,我部署了同一个项目。经过大量谷歌搜索但没有答案,我开始发现这两个部署之间发生了什么变化。我注意到我的 Gemfile 中的大多数 gem 都有一个版本约束,除了 capistrano 扩展组。所以我检查了rubygems.org 上的锁定文件和这些gem 的历史记录,找到了capistrano3-puma 的主版本升级。然后按照文档解决了这个错误。 希望我能为此给你买杯啤酒。也许我可以给你一些现金? 救了我。我花了一段时间才找到这个答案。 我使用了3.15.0,除了install_plugin Capistrano::Puma之外还需要添加install_plugin Capistrano::Puma::Daemon【参考方案2】:

这些任务需要在 Capfile 中包含一些插件。 Jin的回答部分解决了这个问题,并在回答中提到了这一点。

这是一个总结什么有效的答案。

对于 Capistrano

`require 'capistrano/puma'
install_plugin Capistrano::Puma

对于 Capistrano >= 3.15.0 & Puma

require 'capistrano/puma'
install_plugin Capistrano::Puma
install_plugin Capistrano::Puma::Daemon

对于 Capistrano >= 3.15.0 和 Puma >= 5.0

require 'capistrano/puma'
install_plugin Capistrano::Puma
install_plugin Capistrano::Puma::Systemd

【讨论】:

【参考方案3】:

这两行应该在 Capfile 中。在最近的 puma 版本 gem 'capistrano3-puma' 中也进行了此更改。

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

请注意它们在 capfile 中的层次结构。这有助于加载 puma 任务。您可以使用cap -T 列出 capistrano 任务。使用以上两行更新 Capfile 后,还要查找与 puma 相关的任务。

更多详情请见https://github.com/seuros/capistrano-puma#usage

【讨论】:

以上是关于使用 Rails 为 capistrano 3.8.0 运行“cap production deploy”时不知道如何构建任务“start”的主要内容,如果未能解决你的问题,请参考以下文章

Rails 3 -- Bundler/Capistrano 错误

Rails 4 + Capistrano + AWS Net::SSH::AuthenticationFailed: 部署

使用 Capistrano 部署 Rails 5.1 / Webpacker 应用程序

如何在被 capistrano 禁用时访问 rails 应用程序,使用 deploy:web:disable 来更新内容?

rails 4.1 无法通过 capistrano 3 部署

无法通过 capistrano 部署 rails 5 应用程序