2013-02-19 85 views
1

当试图部署到我的登台服务器时,当Capistrano试图创建database.yml文件时,我看到一个错误。用Capistrano部署的问题(符号链接错误)

目前我在我的gitIgnore文件中有database.yml文件(我曾试过包括它)。

我从来没有遇到过这个问题,所以我没有真正知道如何去调试这个问题。

任何帮助深表感谢。

部署日志:

executing `deploy:symlink' 
    * executing "rm -f /home/deploy/example.com/current && ln -s /home/deploy/example.com/releases/20130219164028 /home/deploy/example.com/current" 
    servers: ["example.com"] 
    [example.com] executing command 
    command finished in 1893ms 
    triggering after callbacks for `deploy:symlink' 
    * executing `deploy:copy_database_yml' 
    * executing "ln -s /home/deploy/example.com/shared/data/development /home/deploy/example.com/releases/20130219164028/solr/data/live" 
    servers: ["example.com"] 
    [example.com] executing command 
    command finished in 1867ms 
    * executing "ln -s /home/deploy/example.com/shared/config/database.yml /home/deploy/example.com/releases/20130219164028/config/database.yml" 
    servers: ["example.com"] 
    [example.com] executing command 
** [out :: example.com] ln: creating symbolic link `/home/deploy/example.com/releases/20130219164028/config/database.yml' 
** [out :: example.com] : File exists 
    command finished in 2086ms 
*** [deploy:symlink] rolling back 
*** no previous release to rollback to, rollback of symlink skipped 
*** [deploy:update_code] rolling back 
    * executing "rm -rf /home/deploy/example.com/releases/20130219164028; true" 
    servers: ["example.com"] 
    [example.com] executing command 
    command finished in 2640ms 
failed: "env PATH=/home/deploy/example.com/bin:$PATH GEM_HOME=/home/deploy/example.com/gems sh -c 'ln -s /home/deploy/example.com/shared/config/database.yml /home/deploy/example.com/releases/20130219164028/config/database.yml'" on example.com 

我deploy.rb文件的内容

set :stages, %w(staging integration live) 
set :default_stage, "staging" 
require 'capistrano/ext/multistage' 
require "bundler/capistrano" 

default_run_options[:pty] = true 

set :application, "Example" 
set :use_sudo, false 
set :keep_releases, 5 

# If you aren't using Subversion to manage your source code, specify 
# your SCM below: 
#set :people, 'root' 
#set :ssh_options, { :forward_agent => true } 

namespace :deploy do 
    desc "Restarting mod_rails with restart.txt" 
    task :restart, :roles => :app, :except => {:no_release => true} do 
    run "touch #{current_path}/tmp/restart.txt" 
    end 

    [:start, :stop].each do |t| 
    desc "#{t} task is a no-op with mod_rails" 
    task t, :roles => :app do 
     ; 
    end 
    end 

    # Avoid keeping the database.yml configuration in git. 
    desc "task to create a symlink for the database files." 
    task :copy_database_yml do 
    run "ln -s #{shared_path}/data/development #{release_path}/solr/data/live" 
    run "ln -s #{shared_path}/config/database.yml #{release_path}/config/database.yml" 
    run "rm -rf #{release_path}/public/photos" 
    run "ln -s #{shared_path}/public/photos #{release_path}/public/photos" 
    run "rm -rf #{release_path}/public/hobby_photos" 
    run "ln -s #{shared_path}/public/hobby_photos #{release_path}/public/hobby_photos" 
    run "chmod 777 -R #{release_path}" 
    #run "cd #{release_path}; bundle exec rake db:migrate RAILS_ENV=staging" 
    # run "cd #{release_path}/ & rake db:migrate RAILS_ENV=staging" 
    end 

end 

after "deploy:symlink", "deploy:copy_database_yml" 
+0

看起来你正在使用一些自定义Capistrano的食谱处理database.yml的,请把它们 – cthulhu 2013-02-19 17:41:39

+0

只是加了我deploy.rb的内容文件,希望它有帮助。 – 2013-02-19 17:45:14

回答

3

它看起来像你的答案就在你的眼前。

** [out :: example.com] ln: creating symbolic link `/home/deploy/example.com/releases/20130219164028/config/database.yml' 
** [out :: example.com] : File exists 

修改您的部署:copy_database_yml先删除符号链接,或者只有当它不存在,创建它。 顺便说一句,这个任务的作用远不止它的名字,这是不好的。

0

这似乎是创建符号链接时的Capistrano问题。

试评在deploy.rb文件中的角色:

​​