1

Web サーバーとして Unicorn を使用した Rails アプリケーションを所有しています。

Capistrano を使用してデプロイします。

ここに私のdeploy.rbファイル:

require "bundler/capistrano"

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

set :application, "myapp"
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:therepository/#{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.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

展開はうまくいき、サーバー上の現在のフォルダーには、期待どおりに更新されたファイルが含まれています。

しかし、私が理解できない非常に奇妙なことが起こります:

プロセスの最初に次の行があります。

logger = Logger.new "#{Rails.root}/log/web_agents.log"

このエラーは引き続き表示されます。

No such file or directory - /home/deployer/apps/myapp/releases/20120612122610/log/web_agents.log

なぜ 20120612122610 なのか??? それは私が削除した古いリリースです。

Unicorn が最後のリリースを指していないのはなぜですか?

テストのために、Rails.root を現在のパスへのハードコードされたパスに置き換えます。

それでも同じエラーが発生します... ユニコーンを強制終了、停止、強制停止しました...関係ありません...

何か案が ?

「現在の」フォルダー内の最後に更新されたファイルを使用してプロセスが起動されていると確信しているのは、プロセスを削除するとプロセスが機能せず、多くのエラーが表示されるためです。

更新しました

ここに私のconfig/unicorn.rbファイル:

root = "/home/deployer/apps/myapp/current"
working_directory root
pid "#{root}/tmp/pids/unicorn.pid"
stderr_path "#{root}/log/unicorn.log"
stdout_path "#{root}/log/unicorn.log"

listen "/tmp/unicorn.myapp.sock"
worker_processes 2
timeout 30
4

1 に答える 1

2

私は問題がどこから来ているのか自分自身を見つけました。

実際、UnicornとSidekiqの間にはトラブルシューティングがあります。

確かに、上記の1つのコメントで述べたように、プロセスはSidekiqによって開始されます。

まず、deploy.rb内に、次の行が必要です。

require 'sidekiq/capistrano' 

これにより、展開プロセスでSidekiqを正常に再起動できます。そこを参照してください: https ://github.com/mperham/sidekiq/wiki/Deployment

次に、unicorn.rb内に、次の種類のブロックが存在する必要があります。

after_fork do |server, worker|
  Sidekiq.configure_client do |config|
    config.redis = { :size => 1 }
  end
end

詳細については、以下を参照してください。

https://github.com/mperham/sidekiq/wiki/Problems-and-Troubleshooting

そして今、これ以上奇妙な問題はありません:)

考えられる説明:

おそらくSidekiqは、最後のリリースに基づくことを妨げるいくつかのキャッシュを管理しています...そしてそれが、UnicornとSidekiqの再起動とクリーンな起動で十分だった理由です。

于 2012-08-10T09:13:32.007 に答える