3

我正在尝试使用此 config/deploy/production.rb 文件部署到 slicehost 切片。我一无所知,之前没有使用过 capistrano。这是我遵循的步骤。抱歉,我对 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
4

3 回答 3

4

我认为问题要么是

  • 它无法解析您的主机名
  • 您输入错误的domain

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

于 2009-01-11T18:58:49.383 回答
0

“SocketError: getaddrinfo: Name or service not known”意味着解决或连接到远程主机的某种问题。您是否检查过是否可以手动连接?

于 2009-01-11T18:35:58.023 回答
0

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

于 2009-01-11T18:41:17.017 回答