4

リポジトリgithubを取得しています。bitbucket

ホスト 'github.com (some_ip_address)' の信頼性を確立できません。

これは私の展開ファイルです。完璧に機能deploy:setupしています。deploy:check

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

default_run_options[:pty] = true 
ssh_options[:forward_agent] = true

set :repository, 'ssh://git@bitbucket.org/username/repo.git' 
set :scm :git 
set :scm_verbose, true
set :user, 'root'
set :deploy_via, :remote_cache
set :migrate_target, :current
set :branch, 'master'
set :application, 'my_app_name' 
set :domain, 'my_domain_ip_address'
set :applicationdir, "/home/deploy/domains/#{application}"
set :deploy_to, "/home/deploy/domains/#{application}"
role :web, domain role :app, domain role :db,  domain, :primary => true
set :keep_releases, 5
set :rvm_type, :system

after 'deploy:restart', 'deploy:cleanup'

namespace :deploy do   
  task :start do ; end   
  task :stop do ; end   
  task :restart, :roles => :app, :except => { :no_release => true } do
    run "#{try_sudo} touch #{File.join(current_path,'tmp','restart.txt')}"
    run "#{try_sudo} chmod 777 #{File.join(current_path,'tmp/')}"
    run "#{try_sudo} chmod 777 #{File.join(current_path,'log/')}"
  end
  task :after_deploy do
    run "cd #{current_path} && bundle install --deployment"
    run "cd #{current_path}; RAILS_ENV=#{rails_env} bundle exec rake db:migrate"
    run "#{try_sudo} chmod 777 -R #{current_path}/tmp/"
    run "#{try_sudo} chmod 777 -R #{current_path}/log/"
    run "#{try_sudo} chmod 777 . #{current_path}/log/"   
  end 
end

after 'deploy', 'deploy:after_deploy'

注: 初めて Rails アプリをデプロイしようとしています。

Server: Digital Ocean VPS

Repository: bitbucket.org

をアカウントに追加ssh keyserverました。bitbucket

問題: while 'cap:deploy'、実行後deploy,deploy:update,deploy:update_code,deploy:finalize_update,deploy:assets:symlink,

の実行時に問題が発生しました。使用中に信頼性'bundle install'を求めています。githubbitbucket

4

1 に答える 1

7

git URLこのように設定してみてください

set :repository, 'git@bitbucket.org:username/repo.git'

keysbitbucket に追加していない場合は、ここで行うことができますhttps://bitbucket.org/account/user/username/ssh-keys/

于 2013-09-10T07:15:24.767 に答える