git ssh: Permissão negada (publickey)

7

Eu tentei usar o github, então segui o documento de ajuda. Mas quando eu usei este comando: ssh -vT [email protected] eu recebi um erro assim:

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).

Agente admitiu assinar usando a chave? Não há mais métodos de autenticação para tentar?

Alguém pode explicar o que está errado aqui?

Obrigado.

    
O
por Gnijuohz 15.05.2012 / 06:53

3 respostas

10

Pesquisando no google por "Falha do agente admitido em assinar usando a chave". sugere que sair de sua sessão atual e depois voltar, ou usar ssh-add deve resolver o problema

Justificativa: O Ubuntu usa o programa 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).

Se você acabou de gerar uma chave, ssh-agent não sabe disso, por isso não pode assinar usando a chave - exatamente o que a mensagem de erro diz.

Para adicionar a chave, você precisa reiniciar ssh-agent (ou seja, efetuar logout e login novamente) ou usar ssh-add para verificar novamente as chaves.

Veja man ssh-add e man ssh-agent para mais informações

    
por Sergey 15.05.2012 / 06:59
4

Você configurou corretamente o git e as chaves ssh. Se não estiver, veja aqui .

Extraído do github :

  

Este problema também pode ser causado quando o ssh não consegue encontrar suas chaves. Certifique-se de que sua chave esteja no local padrão, ~/.ssh . Se você executar ssh-keygen novamente e pressionar Enter em todos os 3 prompts, ele será colocado aqui automaticamente. Então você pode adicionar o conteúdo do id_rsa.pub à sua conta. Se id_rsa.pub não funcionar, tente id_dsa.pub. Pode ser necessário gerar uma nova chave dsa com ssh-keygen -t dsa se você tiver apenas uma chave rsa.

P.S. Também às vezes o URL é digitado errado. URLs diferenciam maiúsculas de minúsculas. Certifique-se de digitá-los corretamente.

Veja também .

    
por Ashu 15.05.2012 / 07:01
0

Use github-keygen para a sua configuração de SSH para o Github: fácil, poderosa, segura e protegida (mais segura do que a a documentação oficial recomenda).

Disclaimer: Eu sou o autor desta ferramenta .

    
por dolmen 20.09.2013 / 14:02

Tags