2015-11-11 2 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 

Я также добавить ключ к моему мерзавца хаба счет

мерзавец успех получить мой секретный ключ

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

Но по неизвестной причине мерзавца держать переход на 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 Keys и добавьте только что скопированный ключ.

Я уверен, что вы уже посмотрели на это, но вот more detailed walkthrough.

Смежные вопросы