Falha na autenticação SSH

1

Estou usando este link

https://www.digitalocean.com/community/tutorials/how-to-connect-to-your-droplet-with-ssh

Eu tenho isso

root@milenko-HP-Compaq-6830s:~# ssh-agent
SSH_AUTH_SOCK=/tmp/ssh-L0mlehDNyPEa/agent.18238; export SSH_AUTH_SOCK;
SSH_AGENT_PID=18239; export SSH_AGENT_PID;
echo Agent pid 18239;
root@milenko-HP-Compaq-6830s:~# ssh-add ~/.ssh/id_rsa
/root/.ssh/id_rsa: No such file or directory

O que isso significa?

root@milenko-HP-Compaq-6830s:~/.ssh# ls
known_hosts

ps aux | grep ssh
root     17889  0.0  0.0  11232   332 ?        Ss   14:04   0:00 ssh-agent -s
root     17983  0.0  0.0  11232   332 ?        Ss   14:07   0:00 ssh-agent -s
root     17988  0.0  0.0  11232   332 ?        Ss   14:07   0:00 ssh-agent bash
root     18032  0.0  0.0  11232   332 ?        Ss   14:10   0:00 ssh-agent
root     18034  0.0  0.0  11232   332 ?        Ss   14:11   0:00 ssh-agent
root     18056  0.0  0.0  11232   328 ?        Ss   14:11   0:00 ssh-agent -s
root     18237  0.0  0.0  11232   332 ?        Ss   14:22   0:00 ssh-agent -s
root     18239  0.0  0.0  11232   332 ?        Ss   14:22   0:00 ssh-agent
root     18405  0.0  0.0  21292   952 pts/2    S+   14:32   0:00 grep --color=auto ssh

Dentro de known_hosts é minha chave pyblic. O que está errado?

    
por Richard Rublev 22.08.2016 / 19:29

1 resposta

1
/root/.ssh/id_rsa: No such file or directory

What does this mean?

Significa exatamente o que diz. O arquivo não existe. O tutorial espera que você tenha essas chaves de alguma forma. É discutido nos comentários como criar uma chave ( ssh-keygen ).

    
por 23.08.2016 / 14:15

Tags