Recentemente hai reinstallato il sistema operativo sul tuo server o qualcosa del genere? Ciò causerebbe questo.
Per risolvere questo problema: http://www.cyberciti.biz/faq/warning-remote-host-identification-has-changed-error-and-solution/
Soluzione n. 1: rimuovere le chiavi usando ssh-keygen
Utilizzare l' -R
opzione per rimuovere tutte le chiavi appartenenti al nome host da un file known_hosts. Questa opzione è utile per eliminare gli host con hash. Se il tuo nome host remoto è server.example.com, inserisci:
$ ssh-keygen -R {server.name.com}
$ ssh-keygen -R {ssh.server.ip.address}
$ ssh-keygen -R {ssh.server.ip.address} -f {/path/to/known_hosts}
$ ssh-keygen -R server.example.com
Ora puoi connetterti all'host senza problemi.
Soluzione n. 2: aggiungere la chiave host corretta /home/user/.ssh/known_hosts
Non è necessario eliminare l'intero file known_hosts, ma solo la linea offensiva in quel file. Ad esempio se hai 3 server come segue.
myserver1.com,64.2.5.111 ssh-rsa
AAAAB3NzaC1yc2EAAAABIwAAAIEA11FV0EnGahT2EK8qElocjuHTsu1jaCfxkyIgBTlxlrOIRchb2pw8IzJLOs2bcuYYfa8nSXGEcWyaFD1ifUjfHelj94AAAAB3NzaC1yc2EAAAABIwAAAIEA11FV0E
nGahT2EK8qElocjuHTsu1jaCfxkyIgBTlxlrOIRchb2pw8IzJLOs2bcuYYfa8nSXGEcWyaFD1ifUjfHelj94H+uv304/ZDz6xZb9ZWsdm+264qReImZzruAKxnwTo4dcHkgKXKHeefnBKyEvvp/2ExMV9WT5DVe1viVw
k=
myserver2.com,125.1.12.5 ssh-rsa
AAAAB3NzaC1yc2EAAAABIwAAAQEAtDiERucsZzJGx/1kUNIOYhJbczbZHN2Z1gCnTjvO/0mO2R6KiQUP4hOdLppIUc9GNvlp1kGc3w7B9tREH6kghXFiBjrIn6VzUO4uwrnsMbnAnscD5EktgI7fG4ZcNUP 5+J7sa3o+rtmOuiFxCA690DXUJ8nX8yDHaJfzMUTKTGxQz4M/H2P8L2R//qLj5s3ofzNmgSM9lSEhZL/IyI4NxHhhpltYZKW/Qz4M/H2P8L2R//qLj5s3ofzNmgSM9lSEhZL/M7L0vKeTObue1SgAsXADtK3162a/Z6MGnAazIviHBldxtGrFwvEnk82+GznkO3IBZt5vOK2heBnqQBf
w=
myserver3.com,125.2.1.15 ssh-rsa
5+J7sa3o+rtmOuiFxCA690DXUJ8nX8yDHaJfzMUTKTGx0lVkphVsvYD5hJzm0eKHv+oUXRT9v+QMIL+um/IyI4NxHhhpltYZKW
as3533dka//sd33433////44632Z6MGnAazIviHBldxtGrFwvEnk82/Qz4M/H2P8L2R//qLj5s3ofzNmgSM9lSEhZL/M7L0vKeTObue1SgAsXADtK3162a/Z6MGnAazIviHBldxtGrFwvEnk82+GznkO3IBZt5vOK2heBnqQBfw==
Per eliminare il 2o server (myserver.com), apri il file:
# vi +2 .ssh/known_hosts
E premi il comando dd per eliminare la riga. Salva e chiudi il file. Oppure usa il seguente
$ vi ~/.ssh/known_hosts
Ora vai alla riga # 2, digita il seguente comando
:2
Ora cancella la riga con dd ed esci:
dd
:wq
Oppure puoi usare il comando sed come segue per cancellare la chiave offensiva alla riga # 44:
$ sed -i 44d ~/.ssh/known_hosts
Soluzione 3: basta eliminare il file known_hosts Se si dispone di un solo server SSH
$ cd
$ rm .ssh/known_hosts
$ ssh ras.mydomain.com
Prova a connetterti di nuovo con ssh
Ora dovresti essere in grado di connettere il tuo server tramite ssh:
ssh username@server-ip-here
ssh nixcraft@server1.cyberciti.biz
Successivamente, riceverai un nuovo prompt per aggiungere la chiave ~/.ssh/known_hosts
come segue:
The authenticity of host '10.86.115.66 ()' can't be established.
ECDSA key fingerprint is 4e:10:42:39:53:85:7f:89:89:dc:89:84:8d:79:e7:ed.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '10.86.115.66' (ECDSA) to the list of known hosts.