各位好,最近有个小项目,参考
railscasts
以及 @happypeter 的
happycasts.net
上面讲的方法,部署在局域网内的一台机器上面。
在执行
cap deploy:check
时,没有发现报错,然后执行
cap deploy:setup
,
登录服务器上 apps 下项目的目录查看,只有 releases
和 shared
目录,没有 currrent
目录,其中 releases
目录为空, shared/cached-copy/
目录中有项目的代码.
以下是 deploy.rb
的代码:
require "bundler/capistrano"
server "192.168.1.111", :web, :app, :db, primary: true
set :application, "tick"
set :user, "deployer"
set :deploy_to, "/home/#{user}/apps/#{application}"
set :deploy_via, :remote_cache
set :use_sudo, false
set :scm, "git"
set :repository, "[email protected]:HorX/#{application}.git"
set :branch, "master"
default_run_options[:pty] = 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
这个项目是放在 github 上面的私有项目,从局域网内的服务器可以 clone github 上的这个项目。
尝试在执行 cap deploy
时发现最终报错如下
failed: "sh -c 'cd /home/deployer/apps/tick/releases/20130311041014 && bundle install --gemfile /home/deployer/apps/tick/releases/20130311041014/Gemfile --path /home/deployer/apps/tick/shared/bundle --deployment --quiet --without development test'" on 192.168.1.111
折腾了很久了,还是没找出原因,求助各位帮帮忙,谢谢 ~