1

キャップデポリを実行しようとしていますが、次のエラーが表示されます。

  command finished in 881ms
  * 2013-01-24 12:50:53 executing `whenever:update_crontab'
  * executing "cd /home/deployer/apps/cf/releases/20130124115051 && bundle exec whenever --update-crontab cf --set environment=production --roles db"
    servers: ["208.68.37.172"]
    [208.68.37.172] executing command
 ** [out :: 208.68.37.172] Could not find acts-as-taggable-on-2.3.3 in any of the sources
 ** [out :: 208.68.37.172] 
 ** [out :: 208.68.37.172] Run `bundle install` to install missing gems.
 ** [out :: 208.68.37.172] 
    command finished in 1957ms
*** [deploy:update_code] rolling back
  * executing "rm -rf /home/deployer/apps/cf/releases/20130124115051; true"
    servers: ["208.68.37.172"]
    [208.68.37.172] executing command
    command finished in 935ms
failed: "sh -c 'cd /home/deployer/apps/cf/releases/20130124115051 && bundle exec whenever --update-crontab cf --set environment=production --roles db'" on 208.68.37.172

後で、コマンドが実行される前にバンドラーが実行されていないことに気付きました。これは、Railsアプリを最新バージョンのRailsにアップグレードした後に発生しました。3.2.11。助けてくれてありがとう。

set :whenever_command, "bundle exec whenever"
require "bundler/capistrano"
require "whenever/capistrano"

server "208.68.37.172", :web, :app, :db, primary: true

set :application, "xx"
set :user, "deployer"
set :deploy_to, "/home/#{user}/apps/#{application}"
set :deploy_via, :remote_cache
set :use_sudo, false

set :scm, "git"
set :repository, "git@github.com:ramza1/#{application}.git"
set :branch, "master"

default_run_options[:pty] = true
ssh_options[:forward_agent] = true

after "deploy", "deploy:cleanup" # keep only the last 5 releases

namespace :deploy do
  %w[start stop restart].each do |command|
    desc "#{command} unicorn server"
    task command, roles: :app, except: {no_release: true} do
      run "/etc/init.d/unicorn_#{application} #{command}"
    end
  end

  task :setup_config, roles: :app do
    sudo "ln -nfs #{current_path}/config/nginx.conf /etc/nginx/sites-enabled/#{application}"
    sudo "ln -nfs #{current_path}/config/unicorn_init.sh /etc/init.d/unicorn_#{application}"
    run "mkdir -p #{shared_path}/config"
    put File.read("config/database.example.yml"), "#{shared_path}/config/database.yml"
    puts "Now edit the config files in #{shared_path}."
  end
  after "deploy:setup", "deploy:setup_config"

  task :symlink_config, roles: :app do
    run "ln -nfs #{shared_path}/config/database.yml #{release_path}/config/database.yml"
  end
  after "deploy:finalize_update", "deploy:symlink_config"


  after "deploy:update_code" do
    run "mkdir -p #{release_path}/ckeditor_assets"
    run "ln -nfs #{shared_path}/ckeditor_assets #{release_path}/public/ckeditor_assets"
  end

  desc "Make sure local git is in sync with remote."
  task :check_revision, roles: :web 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
  before "deploy", "deploy:check_revision"
end 
4

3 に答える 3

1

私はあなたの問題は両方だと思います:

最初に、レシピでこのファイルの上部deploy.rbに次を追加します。

require "bundler/capistrano"
require "whenever/capistrano"

2つ目は、gemファイルからインストールする必要があると思います。

gem 'acts-as-taggable-on'

3番目の問題は、バージョンごとに、バージョンwhenever 0.8.2がデプロイで失敗する場合です。バージョン0.8.2をアンインストールして、たとえばインストールしますwhenever (0.7.3)

アンインストールacts-as-taggable-on-2.3.3して、そのgemなしでデプロイが機能しているかどうかを確認します。

またrbenv、他の$ PATH宣言の前にbash_profileにこれを使用して、これらの実行可能ファイルを最初に取得するようにします。

export PATH="$HOME/.rbenv/bin:$PATH"

上から削除し、set :whenever_command, "bundle exec whenever"後にこのコードを追加しますset :branch, "master"

これらの手順を試して、機能するかどうかを確認してください

よろしく!

于 2013-01-24T12:12:00.863 に答える
0

ログから、タグ付け可能として機能するものが欠落しているようです

タグ付け可能として機能をインストールするには

gem 'acts-as-taggable-on'あなたのGemfileに

または、このgemの特定のバージョンを見つけるためにそこに移動します https://rubygems.org/gems/acts-as-taggable-on

于 2013-01-24T12:02:59.710 に答える
0

試す:

ターミナルから次のように入力します

 crontab -e 

これにより、編集用のcrontabが開きます。

これで、次の2行が表示されます。

PATH=/<path to bundle>/bundle/ruby/1.9.1/bin:/usr/local/rvm/gems

PATH=/<path to bundle>/shared/bundle/ruby/1.9.1/bin:/usr/local/rvm/gems

PATHで始まる両方の行をコメントアウトします。

コマンドを実行するときは常に上記の手順を実行してくださいbundle exec whenever。そしてそれは動作します。

于 2013-01-24T12:16:10.973 に答える