Unicorn仍然指向一个旧版本文件夹

时间:2012-08-09 22:30:44

标签: ruby-on-rails ruby unix capistrano unicorn

我拥有一个将Unicorn作为Web服务器的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

1 个答案:

答案 0 :(得分:2)

我发现自己问题来自哪里。

事实上,Unicorn和Sidekiq之间存在故障排除。

事实上,正如我在上面的一条评论中所说,过程是由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就足够了。