¿Recientemente reinstaló el sistema operativo en su servidor o algo así? Eso causaría esto.
Para solucionar esto: http://www.cyberciti.biz/faq/warning-remote-host-identification-has-changed-error-and-solution/
Solución n. ° 1: eliminar claves con ssh-keygen
Use la -R
opción para eliminar todas las claves que pertenecen al nombre de host de un archivo conocido_hosts. Esta opción es útil para eliminar hosts hash. Si su nombre de host remoto es server.example.com, ingrese:
$ 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
Ahora, puede conectarse al host sin ningún problema.
Solución # 2: Agregue la clave de host correcta en /home/user/.ssh/known_hosts
No es necesario eliminar todo el archivo conocido_hosts, solo la línea ofensiva en ese archivo. Por ejemplo, si tiene 3 servidores de la siguiente manera.
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==
Para eliminar el segundo servidor (myserver.com), abra el archivo:
# vi +2 .ssh/known_hosts
Y presione el comando dd para eliminar la línea. Guarde y cierre el archivo. O use siguiente
$ vi ~/.ssh/known_hosts
Ahora ve a la línea # 2, escribe el siguiente comando
:2
Ahora borre la línea con dd y salga:
dd
:wq
O puede usar el comando sed de la siguiente manera para eliminar la clave ofensiva en la línea # 44:
$ sed -i 44d ~/.ssh/known_hosts
Solución 3: simplemente elimine el archivo known_hosts si solo tiene un servidor ssh
$ cd
$ rm .ssh/known_hosts
$ ssh ras.mydomain.com
Intente conectarse con ssh nuevamente.
Ahora debería poder conectar su servidor a través de ssh:
ssh username@server-ip-here
ssh nixcraft@server1.cyberciti.biz
A continuación, recibirá una nueva solicitud para agregar la clave de la ~/.ssh/known_hosts
siguiente manera:
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.