web-dev-qa-db-ja.com

git ssh:許可が拒否されました(公開鍵)

私はgithubを使おうとしたので、ヘルプドキュメントに従いました。しかし、このコマンドを使用したとき:ssh -vT [email protected]このようなエラーが発生しました:

jacos@Jing:~/.ssh$ ssh -vT [email protected]
OpenSSH_5.8p1 Debian-7ubuntu1, OpenSSL 1.0.0e 6 Sep 2011
debug1: Reading configuration data /home/jacos/.ssh/config
debug1: Applying options for github.com
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Connecting to ssh.github.com [207.97.227.248] port 443.
debug1: Connection established.
debug1: identity file /home/jacos/.ssh/id_rsa type 1
debug1: Checking blacklist file /usr/share/ssh/blacklist.RSA-2048
debug1: Checking blacklist file /etc/ssh/blacklist.RSA-2048
debug1: identity file /home/jacos/.ssh/id_rsa-cert type -1
debug1: identity file /home/jacos/.ssh/id_dsa type -1
debug1: identity file /home/jacos/.ssh/id_dsa-cert type -1
debug1: identity file /home/jacos/.ssh/id_ecdsa type -1
debug1: identity file /home/jacos/.ssh/id_ecdsa-cert type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.1p1 Debian-5github2
debug1: match: OpenSSH_5.1p1 Debian-5github2 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_5.8p1 Debian-7ubuntu1
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-md5 none
debug1: kex: client->server aes128-ctr 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: Server Host key: RSA 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48
debug1: Host '[ssh.github.com]:443' is known and matches the RSA Host key.
debug1: Found key in /home/jacos/.ssh/known_hosts:4
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: /home/jacos/.ssh/id_rsa
debug1: Remote: Forced command: gerve gnijuohz 54:da:c2:c1:ca:4a:b9:4d:21:10:5b:42:3f:5a:8e:f7
debug1: Remote: Port forwarding disabled.
debug1: Remote: X11 forwarding disabled.
debug1: Remote: Agent forwarding disabled.
debug1: Remote: Pty allocation disabled.
debug1: Server accepts key: pkalg ssh-rsa blen 279
Agent admitted failure to sign using the key.
debug1: Trying private key: /home/jacos/.ssh/id_dsa
debug1: Trying private key: /home/jacos/.ssh/id_ecdsa
debug1: No more authentication methods to try.
Permission denied (publickey).

エージェントはキーを使用して署名することを認めましたか?試行する認証方法はもうありませんか?

誰かがここで何が間違っているのか説明できますか?

ありがとう。

7
Gnijuohz

「エージェントがキーを使用した署名の失敗を認めた」ためにGoogleを検索します。現在のセッションからログアウトしてから再度ログインするか、ssh-addを使用して問題を解決することをお勧めします

理由: Ubuntuはssh-agentプログラムを使用します:

 ssh-agent is a program to hold private keys used for public key authentication (RSA, DSA, ECDSA).  The idea
 is that ssh-agent is started in the beginning of an X-session or a login session, and all other windows or
 programs are started as clients to the ssh-agent program.  Through use of environment variables the agent can
 be located and automatically used for authentication when logging in to other machines using ssh(1).

キーを生成したばかりの場合、ssh-agentはそれを認識しないため、キーを使用して署名することはできません-エラーメッセージのとおりです。

キーを追加するには、ssh-agentを再起動する(つまり、ログアウトして再度ログインする)か、ssh-addを使用してキーを再スキャンする必要があります。

詳細については、man ssh-addおよびman ssh-agentを参照してください

10
Sergey

Gitキーとsshキーを適切にセットアップしましたか。 here が表示されない場合。

github から取得:

この問題は、sshがキーを見つけられない場合にも発生する可能性があります。キーがデフォルトの場所~/.sshにあることを確認してください。 ssh-keygenを再度実行し、3つすべてのプロンプトでEnterキーを押すと、自動的にここに配置されます。次に、id_rsa.pubのコンテンツをアカウントに追加できます。 id_rsa.pubが機能しない場合は、id_dsa.pubを試してください。 rsaキーがある場合は、ssh-keygen -t dsaを使用して新しいdsaキーを生成する必要があります。

追伸また、URLが間違って入力されることもあります。 URLでは大文字と小文字が区別されます。必ず正しく入力してください。


これも参照

4
Ashu

GithubのSSHセットアップには github-keygen を使用します。簡単、強力、安全、安全です(公式ドキュメントが推奨するものよりも安全です)。

免責事項:私はこのツールの著者です

0
dolmen