2017-01-15 156 views
0

我想安裝AgensGraph當我嘗試安裝AgnesGraph時,出現錯誤

但是,當我試圖安裝AgensGraph,我得到一個錯誤。安裝命令和錯誤如下。

  • 安裝命令:
git clone [email protected]:bitnine-oss/agens-graph.git 
  • 安裝錯誤:

The authenticity of host 'github.com (192.30.253.113)' can't be established.

RSA key fingerprint is SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8.

RSA key fingerprint is MD5:16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48.

Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added 'github.com,192.30.253.113' (RSA) to the list of known hosts.

Permission denied (publickey). fatal: Could not read from remote repository.

Please make sure you have the correct access rights and the repository exists.

我怎樣才能解決這個錯誤嗎?

+0

歡迎來到堆棧溢出!請參考[遊覽](http://stackoverflow.com/tour),環顧四周,閱讀[幫助中心](http://stackoverflow.com/help),特別是[我該如何問一個好問題?](http://stackoverflow.com/help/how-to-ask)和[我可以問什麼問題?](http://stackoverflow.com/help/on-topic)。 –

回答

1

您正在使用github SSH鏈接。 SSH需要通過SSH密鑰和密碼進行身份驗證。如果你沒有隸屬關係,該組織克隆通過HTTPS

git clone https://github.com/bitnine-oss/agens-graph.git 

導致成:

Cloning into 'agens-graph'... 
remote: Counting objects: 11484, done. 
remote: Compressing objects: 100% (189/189), done. 
Rremote: Total 11484 (delta 123), reused 0 (delta 0), pack-reused 11295 
Receiving objects: 100% (11484/11484), 24.74 MiB | 193.00 KiB/s, done. 
Resolving deltas: 100% (6006/6006), done. 
Checking out files: 100% (4879/4879), done. 

更多鏈接:

相關問題