Git从头衔要求Gitosis上的密码

时间:2012-01-26 08:17:02

标签: git capistrano gitosis capifony

我设置了一个带有gitosis的服务器(yum install gitosis(CentOS 6.2))并配置我的deploy.rb如下:

set :application, "uda"
set :domain,      "10.0.0.59"
set :deploy_to,   "/var/www/html/"
set :app_path,    "app"

set :user,        "root"
set :use_sudo,    false
#default_run_options[:pty] = true
ssh_options[:port] = 22
set :php_bin, "/usr/bin/php"

set  :repository,  "gitosis@10.0.0.59:uda.git"
set :scm,         :git

set :branch,      "master"

role :web,        domain                         # Your HTTP server, Apache/etc
role :app,        domain                         # This may be the same as your `Web` server
role :db,         domain, :primary => true       # This is where Rails migrations will run

set :update_vendors, true

set  :keep_releases,  5

# 
# ssh_options[:forward_agent] = true
# set :model_manager, "doctrine"

set :shared_files,      ["app/config/parameters.ini"]
set :shared_children,     [app_path + "/logs", web_path + "/uploads", "vendor"]

当我启动时,使用cap deploy要求输入密码。 Gitosis没有任何密码,所以我认为是要求root密码。我明白了:

==> cap deploy
  * executing `deploy'
  * executing `deploy:update'
 ** transaction: start
  * executing `deploy:update_code'
    executing locally: "git ls-remote gitosis@10.0.0.59:uda.git master"
/Users/gitek/.ssh/config line 2: garbage at end of line; "#".
fatal: The remote end hung up unexpectedly
*** [deploy:update_code] rolling back
  * executing "rm -rf /var/www/html/releases/20120126081107; true"
    servers: ["gureak-akademi.grupogureak.com"]
Password: 
    [gureak-akademi.grupogureak.com] executing command
    command finished in 58ms
Command git ls-remote gitosis@10.0.0.59:uda.git master returned status code 32768

无论如何,如果我通过ssh连接到我的服务器并启动

root@centos ~]# git ls-remote gitosis@10.0.0.59:uda.git master
gitosis@10.0.0.59's password: 

它要求密码......

任何帮助或线索?

1 个答案:

答案 0 :(得分:2)

检查〜/ .ssh / authorized_keys文件有id_rsa.pub内容

相关问题