Nesse caso,
você tem passagem de pass phrase
quando você cria, então se você conectar sem pass phrase
quando SSH, você deve criar uma nova chave com o comando como:
**[test@test test]$ ssh-keygen**
Generating public/private rsa key pair.
Enter file in which to save the key (/home/test/.ssh/id_rsa):
Created directory '/home/test/.ssh'.
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /home/test/.ssh/id_rsa.
Your public key has been saved in /home/test/.ssh/id_rsa.pub.
The key fingerprint is:
ac:5e:9a:72:c6:cd:82:9c:cd:1f:bc:4d:de:f9:50:d9 tanto@hlink_backup_086
The key's randomart image is:
+--[ RSA 2048]----+
| |
| |
| |
| . o |
| S o E|
| o . |
| . *.o+ . . |
| =.B+o* . o |
| ++oo o o.. |
+-----------------+
Na etapa Enter passphrase,
, você deve inserir vazio. Depois da criação, você pode adicionar a chave id_rsa.pub
à pasta .ssh/authorized_keys
do servidor remoto e verificar a permissão e alterar o arquivo authorized_keys com chmod 600:
[root@test test]# chmod -R 600 /home/test/.ssh/authorized_keys
[root@test test]# ls -l /home/test/.ssh/authorized_keys
-rw------- 1 test test 1212 Jul 12 14:17 /home/test/.ssh/authorized_keys