Capistrano远程认证问题

时间:2009-01-11 18:33:40

标签: capistrano

我正在尝试使用此config / deploy / production.rb文件部署到slicehost切片。我很无能为力之前没有使用过卡斯特拉诺。以下是我遵循的步骤。对不起,但我对capistrano完全不熟悉。它一直在询问我的密码(已设置无密码SSH),并抛出此错误:

(SocketError: getaddrinfo: Name or service not known)
connection failed for: ---------.com (Net::SSH::AuthenticationFailed: -----)

首先,它是'bort'应用http://github.com/fudgestudios/bort/tree/master

其次,我使用了ubuntu-machine gem,详见:

http://suitmymind.github.com/ubuntu-machine/#screencast

配置/部署/ production.rb

#############################################################
#   Application
#############################################################

set :application, "---------------"
set :deploy_to, "/var/www/#{application}"

#############################################################
#   Settings
#############################################################

default_run_options[:pty] = true
ssh_options[:forward_agent] = true
set :use_sudo, true
set :scm_verbose, true
set :rails_env, "production" 

#############################################################
#   Servers
#############################################################

set :user, "----------"
set :domain, "--------------------------"
server domain, :app, :web
role :db, domain, :primary => true

#############################################################
#   Git
#############################################################

set :scm, :git
set :branch, "master"
set :scm_user, '---------'
set :scm_passphrase, "----------"
set :repository, "git@github.com:--------/----------.git"
set :deploy_via, :remote_cache

#############################################################
#   Passenger
#############################################################

namespace :deploy do
  desc "Create the database yaml file"
  task :after_update_code do
    db_config = <<-EOF
    production:    
      adapter: mysql
      encoding: utf8
      username: root
      password: ------------
      database: ------------_production
      host: localhost
    EOF

    put db_config, "#{release_path}/config/database.yml"

    #########################################################
    # Uncomment the following to symlink an uploads directory.
    # Just change the paths to whatever you need.
    #########################################################

    desc "Symlink the assets directories"
     task :before_symlink do
       run "mkdir -p #{shared_path}/assets"
       run "ln -nfs #{shared_path}/assets #{release_path}/public/assets"
     end

  end

  # Restart passenger on deploy
  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

end

3 个答案:

答案 0 :(得分:4)

我认为问题可能是

  • 无法解析您的主机名
  • 你错误的domain

以防万一,您是否尝试将domain值设置为服务器的IP地址?

答案 1 :(得分:0)

“SocketError:getaddrinfo:名称或服务未知”表示某种问题已解决或连接到远程主机。你有没有检查过你可以手动连接?

答案 2 :(得分:0)

开始调试cap脚本的一种方法是自己执行该过程的每个步骤。您可以直接从详细的cap输出中复制语句。这应该有助于隔离问题,在这种情况下,连接问题是什么(slicehost?,github?,两者?)。