I've been using anonymous git access for quite some time, but since I'm about to get commit access on a project, I'm attempting to get SSH access working. I've uploaded my RSA public key, and it looks correct in the web interface. But the ssh -v output indicates that it's not being recognized. It's been a few hours since I uploaded the key, and my impression is that the cron job to update the keys runs hourly. Is it possible that the cron job is not running?
My Savannah userid is fhgwright, which is configured in my ~/.ssh/config (but not shown in the -v output) as follows: Host git.sv.gnu.org Hostname git.sv.gnu.org User fhgwright RequestTTY no Here's the ssh -v output: MacPro:~ fw$ ssh -v git.sv.gnu.org OpenSSH_6.2p2, OSSLShim 0.9.8r 8 Dec 2011 debug1: Reading configuration data /Users/fw/.ssh/config debug1: /Users/fw/.ssh/config line 40: Applying options for git.sv.gnu.org debug1: /Users/fw/.ssh/config line 44: Applying options for * debug1: Reading configuration data /etc/ssh_config debug1: /etc/ssh_config line 20: Applying options for * debug1: /etc/ssh_config line 54: Applying options for * debug1: Connecting to git.sv.gnu.org [208.118.235.72] port 22. debug1: Connection established. debug1: identity file /Users/fw/.ssh/id_rsa type 1 debug1: identity file /Users/fw/.ssh/id_rsa-cert type -1 debug1: identity file /Users/fw/.ssh/id_dsa type -1 debug1: identity file /Users/fw/.ssh/id_dsa-cert type -1 debug1: Enabling compatibility mode for protocol 2.0 debug1: Local version string SSH-2.0-OpenSSH_6.2 debug1: Remote protocol version 2.0, remote software version OpenSSH_5.9 debug1: match: OpenSSH_5.9 pat OpenSSH_5* debug1: SSH2_MSG_KEXINIT sent debug1: SSH2_MSG_KEXINIT received debug1: kex: server->client aes128-ctr hmac-md5 none debug1: kex: client->server aes128-ctr hmac-md5 none debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP debug1: SSH2_MSG_KEX_DH_GEX_INIT sent debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY debug1: Server host key: RSA 80:5a:b0:0c:ec:93:66:29:49:7e:04:2b:fd:ba:2c:d5 debug1: Host 'git.sv.gnu.org' is known and matches the RSA host key. debug1: Found key in /Users/fw/.ssh/known_hosts:47 debug1: ssh_rsa_verify: signature correct debug1: SSH2_MSG_NEWKEYS sent debug1: expecting SSH2_MSG_NEWKEYS debug1: SSH2_MSG_NEWKEYS received debug1: SSH2_MSG_SERVICE_REQUEST sent debug1: SSH2_MSG_SERVICE_ACCEPT received debug1: Authentications that can continue: publickey debug1: Next authentication method: publickey debug1: Offering RSA public key: /Users/fw/.ssh/id_rsa debug1: Authentications that can continue: publickey debug1: Trying private key: /Users/fw/.ssh/id_dsa debug1: No more authentication methods to try. Permission denied (publickey). The key fingerprint is as follows: MacPro:~ fw$ ssh-keygen -lf ~/.ssh/id_rsa.pub 2048 c7:5e:40:2d:d4:d0:44:af:b6:24:17:82:a6:85:3f:e4 fw@MacPro.local (RSA) Or as in ssh-agent: MacPro:~ fw$ ssh-add -l 2048 c7:5e:40:2d:d4:d0:44:af:b6:24:17:82:a6:85:3f:e4 /Users/fw/.ssh/id_rsa (RSA) Thanks, Fred Wright