【发布时间】:2014-08-05 04:25:18
【问题描述】:
嗨,我正在 VPS 中部署我的 rails 应用程序,我关注了https://coderwall.com/p/yz8cha 这个博客,问题是 nginx 仅显示 500 错误页面,我怀疑我的独角兽不是由 capistrano 启动的(因为如果我手动启动独角兽然后 nginx 工作),那么如何通过 cap:deploy 启动独角兽
这是我的 cap 文件
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
这是 ps aux | 的结果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
那么我的独角兽是否有问题?如果是,如何通过 capistrano 启动独角兽?
【问题讨论】:
-
是通过
cap部署还是手动启动unicorn服务器后输出ps | grep? -
@navinspm 你可以试试capistrano-unicorn,用capistrano3管理独角兽会更容易。
-
@SteveRobinson 部署应用程序后
-
@Shrikanth 我也试过了,但是如果我给 unicorn:stop 加盖,然后启动它说 unicorn 已经启动,但什么也没发生
-
@navinspm 之后你用 ps -ef 检查过吗? grep 独角兽?独角兽跑了吗?
标签: ruby-on-rails nginx capistrano unicorn