簡體   English   中英

ssh配置不起作用。 權限被拒絕(公鑰)

[英]ssh config not working. Permission denied (publickey)

我的ssh配置有問題。 我有多個密鑰對和多個主機,所以我想設置ssh配置,以便我可以輕松地在它們之間切換。

我的ssh配置如下所示:

Host blog
    User Myusername
    HostName github.com
    IdentityFile ~/.ssh/macbook_id_rsa

Host blog2
    User Myusername2
    HostName github.com
    IdentityFile ~/.ssh/macbook_2_id_rsa

現在,如果我只是使用ssh-add添加我的私鑰並輸入密碼,我就能連接到github或其他主機。 但當我嘗試切換不同的密鑰對時

ssh -vT blog

我收到如下錯誤信息:

OpenSSH_6.2p2, OSSLShim 0.9.8r 8 Dec 2011
debug1: Reading configuration data /Users/paul/.ssh/config
debug1: /Users/paul/.ssh/config line 1: Applying options for blog
debug1: Reading configuration data /etc/ssh_config
debug1: /etc/ssh_config line 20: Applying options for *
debug1: Connecting to github.com [192.30.252.130] port 22.
debug1: Connection established.
debug1: identity file /Users/paul/.ssh/macbook_id_rsa type 1
debug1: identity file /Users/paul/.ssh/macbook_id_rsa-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/paul/.ssh/known_hosts:3
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/paul/.ssh/macbook_id_rsa
debug1: Authentications that can continue: publickey
debug1: No more authentication methods to try.
Permission denied (publickey).

任何人都可以指出我的ssh配置是否有問題,或者我在這里缺少什么。 謝謝

你應該使用git作為用戶名。 在這種情況下

User git

請參閱https://help.github.com/articles/generating-ssh-keys/

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM