Cap部署会创建重复的独角兽

时间:2012-01-26 19:57:14

标签: capistrano unicorn

我在deploy.rb

中有以下任务
namespace :unicorn do
  desc "stop unicorn"
  task :stop, :roles => :app, :except => { :no_release => true } do
    run "#{try_sudo} kill `cat #{unicorn_pid}`"
  end 
  desc "start unicorn"
  task :start, :roles => :app, :except => { :no_release => true } do
    run "cd #{current_path} && #{try_sudo} unicorn -c #{current_path}/config/unicorn.rb -E #{rails_env} -D"
  end
  task :reload, :roles => :app, :except => { :no_release => true } do
    run "#{try_sudo} kill -s USR2 `cat #{unicorn_pid}`"
  end

  after "deploy:restart", "unicorn:reload"
end

当我从开发机器上运行独角兽:启动独角兽:重新加载任务时,服务器上的一切正常:

$ ps aux | grep unicorn
myuser   8196 77.9 12.2  81020 62748 ?        Sl   19:18   0:14 unicorn master -c /home/myuser/www/myapp/current/config/unicorn.rb -E production -D                                                                                       
myuser   8216  0.0 11.5  81020 59232 ?        Sl   19:18   0:00 unicorn worker[0] -c /home/myuser/www/myapp/current/config/unicorn.rb -E production -D

然而,当我运行一个全面的上限部署时,我得到了unicorn服务器的多个实例,这让nginx的地狱感到困惑。

$ ps aux | grep unicorn
myuser   8196  4.4 12.2  81020 62764 ?        Sl   19:18   0:14 unicorn master (old) -c /home/myuser/www/myapp/current/config/unicorn.rb -E production -D                                                                                 
myuser   8216  1.1 13.2  87868 67764 ?        Sl   19:18   0:03 unicorn worker[0] -c /home/myuser/www/myapp/current/config/unicorn.rb -E production -D                                                                                    
myuser   8362  5.8 12.8  83448 65408 ?        Sl   19:19   0:16 unicorn master -c /home/myuser/www/myapp/current/config/unicorn.rb -E production -D                                                                                       
myuser   8385  0.0 12.1  83712 61980 ?        Sl   19:19   0:00 unicorn worker[0] -c /home/myuser/www/myapp/current/config/unicorn.rb -E production -D

我不知道为什么 unicorn:reload 会在部署时启动这些重复的实例。显然它并没有阻止以前的主人/工人。我必须运行独角兽:停止任务两次,然后再次独角兽:开始来解决问题

其他人遇到这个?我一直在盯着它好几个小时没有运气

1 个答案:

答案 0 :(得分:0)

所以看起来这个问题是一个错误的独角兽安装。我捏造了我的宝石并重新贴上了,现在一切都很甜蜜。独角兽版本是一样的,所以它仍然有点神秘,但至少它现在正在工作