简体   繁体   English

独角兽capistrano无法启动

[英]unicorn capistrano not starting

Hi I am deploying my rails application in VPS and I have followed https://coderwall.com/p/yz8cha this blog and the problem is nginx show only 500 error page , I doubt of that my unicorn is not starts by capistrano (because if I start manually unicorn then nginx works), so how to start unicorn by cap:deploy 嗨,我正在VPS中部署我的Rails应用程序,并且我已经关注了https://coderwall.com/p/yz8cha这个博客,问题是nginx仅显示500个错误页面,我怀疑我的独角兽不是由capistrano启动的(因为如果我手动启动独角兽,那么nginx可以工作),因此如何通过cap:deploy启动独角兽

This is my cap file 这是我的档案

  require "bundler/capistrano"
    require "rvm/capistrano"

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

set :application, "testvpsdo"
set :user, "navin"
set :port, 3008
set :deploy_to, "/home/#{user}/apps/#{application}"
set :deploy_via, :remote_cache
set :use_sudo, false

set :scm, "git"
set :repository, "git@github.com:navinspm/testvpsdo.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"

  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

and this is the result while ps aux | 这是ps aux的结果| grep unicorn grep独角兽

navin    15055  0.0  4.9 161736 24688 ?        Sl   Aug04   0:01 unicorn master -D -c /home/navin/apps/testvpsdo/current/config/unicorn.rb -E production                                                      
navin    15058  0.0 16.4 245268 82480 ?        Sl   Aug04   0:03 unicorn worker[0] -D -c /home/navin/apps/testvpsdo/current/config/unicorn.rb -E production                                                   
navin    15060  0.0 16.3 245120 82228 ?        Sl   Aug04   0:03 unicorn worker[1] -D -c /home/navin/apps/testvpsdo/current/config/unicorn.rb -E production                                                   
navin    16605  0.0  0.1  11744   904 pts/1    S+   00:23   0:00 grep --color=auto unicorn

so whether the problem with my unicorn?If so how to start unicorn by capistrano? 那么我的独角兽是否有问题?如果是,如何通过capistrano启动独角兽?

I had the same error and the reason was: 我有同样的错误,原因是:

while stoping capistrano3-unicorn tries to tmp/pids/unicorn.pid by default but "unicorn.pid" was at /shared/pids/unicorn.pid. 虽然停止capistrano3-unicorn会默认尝试尝试tmp / pids / unicorn.pid,但“ unicorn.pid”位于/shared/pids/unicorn.pid。

By changing the path for unicorn.pid in unicorn.rb resolved my error. 通过更改unicorn.rb中unicorn.pid的路径,解决了我的错误。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM