2012-03-19 123 views
2

我想通過phpfog雲服務託管我的php應用程序,這是我第一次嘗試使用任何GIT客戶端;遵循PHPfog文檔中定義的過程,我完成了創建密鑰並添加它。無法推送到phpfog,權限被拒絕(publickey)

現在,當我試圖克隆我的回購協議:在phpfog我收到此錯誤的git bash中(GIT克隆[email protected] myrep.phpfogapp.com):

Permission denied (publickey). 
fatal: The remote end hung up unexpectedly 

但是公鑰已經生成並添加到phpfog中。

請幫助,謝謝。


$ ssh -vT [email protected] 
OpenSSH_4.6p1, OpenSSL 0.9.8e 23 Feb 2007 
debug1: Connecting to git01.phpfog.com [50.17.200.54] port 22. 
debug1: Connection established. 
debug1: identity file /c/Users/Mypcname/.ssh/identity type -1 
debug1: identity file /c/Users/Mypcname/.ssh/id_rsa type -1 
debug1: identity file /c/Users/Mypcname/.ssh/id_dsa type -1 
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.3p1 Debia 
n-3ubuntu7 
debug1: match: OpenSSH_5.3p1 Debian-3ubuntu7 pat OpenSSH* 
debug1: Enabling compatibility mode for protocol 2.0 
debug1: Local version string SSH-2.0-OpenSSH_4.6 
debug1: SSH2_MSG_KEXINIT sent 
debug1: SSH2_MSG_KEXINIT received 
debug1: kex: server->client aes128-cbc hmac-md5 none 
debug1: kex: client->server aes128-cbc 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: Host 'git01.phpfog.com' is known and matches the RSA host key. 
debug1: Found key in /c/Users/Mypcname/.ssh/known_hosts:1 
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: Trying private key: /c/Users/Mypcname/.ssh/identity 
debug1: Trying private key: /c/Users/Mypcname/.ssh/id_rsa 
debug1: Trying private key: /c/Users/Mypcname/.ssh/id_dsa 
debug1: No more authentication methods to try. 
Permission denied (publickey). 
+0

的可能重複[混帳 - 權限被拒絕(公鑰)](HTTP://計算器.com/questions/2643502/git-permission-denied-publickey) – 2012-03-19 15:51:37

+0

我檢查過這個線程,但沒有找到我的問題的解決方案。 – Maven 2012-03-19 15:57:20

+0

和'ssh -vT'的輸出在哪裏? – 2012-03-19 16:03:20

回答

2

我會重試再次上傳您的SSH密鑰。

  1. 從phpfog控制檯中刪除現有的鍵。
  2. 打印出你的SSH密鑰:cat ~/.ssh/id_rsa.pub
  3. 創建於phpfog控制檯新SSH密鑰,並將其粘貼
相關問題