2015-11-11 238 views
2

我遇到了一些問題,當我想設置ssh到我的git。這是我得到的錯誤消息。git權限被拒絕(publickey)

mbp-op-159:.ssh weiting.cheng$ ssh -vT [email protected] 
OpenSSH_6.2p2, OSSLShim 0.9.8r 8 Dec 2011 
debug1: Reading configuration data /etc/ssh_config 
debug1: /etc/ssh_config line 20: Applying options for * 
debug1: Connecting to github.com [192.168.1.1] port 22. 
debug1: Connection established. 
debug1: identity file /Users/c/.ssh/id_rsa type 1 
debug1: identity file /Users/c/.ssh/id_rsa-cert type -1 
debug1: identity file /Users/c/.ssh/id_dsa type -1 
debug1: identity file /Users/c/.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 libssh-0.7.0 
debug1: no match: libssh-0.7.0 
debug1: SSH2_MSG_KEXINIT sent 
debug1: SSH2_MSG_KEXINIT received 
debug1: kex: server->client aes128-ctr hmac-sha1 none 
debug1: kex: client->server aes128-ctr hmac-sha1 none 
debug1: sending SSH2_MSG_KEXDH_INIT 
debug1: expecting SSH2_MSG_KEXDH_REPLY 
debug1: Server host key: RSA  16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48 
debug1: Host 'github.com' is known and matches the RSA host key. 
debug1: Found key in /Users/c/.ssh/known_hosts:2 
debug1: ssh_rsa_verify: signature correct 
debug1: SSH2_MSG_NEWKEYS sent 
debug1: expecting SSH2_MSG_NEWKEYS 
debug1: SSH2_MSG_NEWKEYS received 
debug1: Roaming not allowed by server 
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/c/.ssh/id_rsa 
debug1: Authentications that can continue: publickey 
debug1: Trying private key: /Users/c/.ssh/id_dsa 
debug1: No more authentication methods to try. 
Permission denied (publickey). 

我按照git hub文檔的說明,但他們沒有提到我的問題。

我有私鑰

debug1: identity file /Users/c/.ssh/id_rsa type 1 

我還添加鍵值到我的git的樞紐帳戶

混帳成功拿到我的私鑰

debug1: Authentications that can continue: publickey 
debug1: Next authentication method: publickey 
debug1: Offering RSA public key: /Users/c/.ssh/id_rsa 

但對於不明原因的git保持繼續我沒有生成它的id_dsa。

debug1: Authentications that can continue: publickey 
debug1: Trying private key: /Users/c/.ssh/id_dsa 
debug1: No more authentication methods to try. 

然後我得到了權限被拒絕。

有人有解決這個問題的建議嗎?

+0

您是否將您的**公鑰**或您的**私鑰**添加到GitHub中?這個非常重要;如果你已經完成了後者,則過期/銷燬該密鑰並重新生成一個新的公私密鑰對並使用公鑰。 – Makoto

回答

1

您的密鑰無效。我建議完全重新開始,所以請繼續並刪除~/.ssh/文件夾中的所有內容(known_hosts除外,您應該保留該內容)。然後運行:

ssh-keygen -t rsa -b 4096 -C "[email protected]"

使用與您的GitHub帳戶相關聯的電子郵件地址。確保密鑰正在保存在正確的用戶文件夾中。在你的情況下,密鑰應該保存爲/Users/c/.ssh/id_rsa

最後,將~/.ssh/id_rsa.pub的內容複製到剪貼。中。轉到您的GitHub設置,單擊SSH密鑰選項卡,然後添加您剛剛複製的密鑰。

我相信你已經看過這個了,但是這裏有一個more detailed walkthrough

相關問題