0

Ubuntu 12.04 VPS でホストされている Rails 3 アプリケーションを実行しています。デプロイには Capistrano を使用し、サーバーには nginx + unicorn を使用しています。
私の問題は、「cap deploy」を実行すると、VPS を再起動するまで Web サイトに古いコードが表示されることです。サーバー上の現在のコードを確認しましたが、正しいコードです。すでにnginxを再起動しようとしましたが、うまくいきません。私の展開ファイル(私はRailscastに従いました):

# deploy.rb

require "bundler/capistrano"
require 'new_relic/recipes'

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

set :application, "neurones"
set :user, "neurones"
set :deploy_to, "/home/neurones/apps/#{application}"
set :deploy_via, :remote_cache
set :use_sudo, false
set :shared_children, shared_children + %w{public/uploads}

set :scm, "git"
set :repository, "git@github.com:khcr/neurones.git"
set :branch, "master"

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

after "deploy", "deploy:cleanup" # keep only the last 5 releases
after "deploy:update", "newrelic:notice_deployment" # update new relic

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"

  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

1 に答える 1

2

問題を解決しました。
ユニコーンのログ (アイデアをくれた Domon に感謝) を調べたところ、次のエラーが表示されました。

config_file=/home/neurones/apps/neurones/current/config/unicorn.rb の再読み込みエラー: アプリケーションは既に初期化されています。(ランタイムエラー)

unicorn_init.sh を次から変更しました。

restart|reload)
  sig HUP && echo reloaded OK && exit 0
  echo >&2 "Couldn't reload, starting '$CMD' instead"
  run "$CMD"
  ;;

restart|reload)
  sig USR2 && echo reloaded OK && exit 0
  echo >&2 "Couldn't reload, starting '$CMD' instead"
  run "$CMD"
  ;;
于 2013-07-02T21:37:02.123 に答える