When I run ssh command I get an error which read as follows:
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
Someone could be eavesdropping on you right now (man-in-the-middle attack)!
It is also possible that the RSA host key has just been changed.
The fingerprint for the RSA key sent by the remote host is
5c:9b:16:56:a6:cd:11:10:3a:cd:1b:a2:91:cd:e5:1c.
Please contact your system administrator.
Add correct host key in /home/user/.ssh/known_hosts to get rid of this message.
Offending key in /home/user/.ssh/known_hosts:1
RSA host key for ras.mydomain.com has changed and you have requested strict checking.
Host key verification failed.
How do I get rid of this message?
If you have reinstalled Linux or UNIX with OpenSSH, you will get the above error. To get rid of this problem:
Solution #1: Remove keys
Use the -R option to removes all keys belonging to hostname from a known_hosts file. This option is useful to delete hashed hosts. If your remote hostname is server.example.com, enter:
$ ssh-keygen -R {server.name.com}
$ ssh-keygen -R {ssh.server.ip.address}
$ ssh-keygen -R server.example.com
Sample output:
/home/vivek/.ssh/known_hosts updated. Original contents retained as /home/vivek/.ssh/known_hosts.old
Now, you can connect to the host without a problem.
Solution #2: Add correct host key in /home/user/.ssh/known_hosts
It is not necessary to delete the entire known_hosts file, just the offending line in that file. For example if you have 3 server as follows.
myserver1.com,64.2.5.111 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAIEA11FV0EnGahT2EK8qElocjuHTsu1jaCfxkyIgBTlxlrOIRchb2pw8IzJLOs2bcuYYfa8nSXGEcWyaFD1ifUjfHelj94AAAAB3NzaC1yc2EAAAABIwAAAIEA11FV0E
nGahT2EK8qElocjuHTsu1jaCfxkyIgBTlxlrOIRchb2pw8IzJLOs2bcuYYfa8nSXGEcWyaFD1ifUjfHelj94H+uv304/ZDz6xZb9ZWsdm+264qReImZzruAKxnwTo4dcHkgKXKHeefnBKyEvvp/2ExMV9WT5DVe1viVwk=
myserver2.com,125.1.12.5 ssh-rsa
AAAAB3NzaC1yc2EAAAABIwAAAQEAtDiERucsZzJGx/1kUNIOYhJbczbZHN2Z1gCnTjvO/0mO2R6KiQUP4hOdLppIUc9GNvlp1kGc3w7B9tREH6kghXFiBjrIn6VzUO4uwrnsMbnAnscD5EktgI7fG4ZcNUP 5+J7sa3o+rtmOuiFxCA690DXUJ8nX8yDHaJfzMUTKTGxQz4M/H2P8L2R//qLj5s3ofzNmgSM9lSEhZL/IyI4NxHhhpltYZKW/Qz4M/H2P8L2R//qLj5s3ofzNmgSM9lSEhZL/M7L0vKeTObue1SgAsXADtK3162a/Z6MGnAazIviHBldxtGrFwvEnk82+GznkO3IBZt5vOK2heBnqQBfw=
myserver3.com,125.2.1.15 ssh-rsa
5+J7sa3o+rtmOuiFxCA690DXUJ8nX8yDHaJfzMUTKTGx0lVkphVsvYD5hJzm0eKHv+oUXRT9v+QMIL+um/IyI4NxHhhpltYZKW
as3533dka//sd33433////44632Z6MGnAazIviHBldxtGrFwvEnk82/Qz4M/H2P8L2R//qLj5s3ofzNmgSM9lSEhZL/M7L0vKeTObue1SgAsXADtK3162a/Z6MGnAazIviHBldxtGrFwvEnk82+GznkO3IBZt5vOK2heBnqQBfw==
To delete 2nd server (myserver.com), open file:
# vi +2 .ssh/known_hosts
And hit dd command to delete line. Save and close the file. Or use following
$ vi ~/.ssh/known_hosts
Now go to line # 2, type the following command
:2
Now delete line with dd and exit:
dd
:wq
Solution 3: Just delete the known_hosts file If you have only used one ssh server
$ cd
$ rm .ssh/known_hosts
$ ssh ras.mydomain.com
Now you should be able to connect your server via ssh.
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop












{ 48 comments… read them below or add one }
It’s not necessary to delete the entire known_hosts file, just the offending line in that file.
Using your example, all you need to do is:
vi ~/.ssh/known_hosts
1G
dd
:wq
And done. This is helpful if you manage a large group of servers and have *many* keys cached. If you delete the entire file, you will br prompted to add the server’s key on each connection attempt.
I have an easier way to just delete the one offending key:
EXAMPLE: sed -i ’2d’ .ssh/known_hosts
Just replace the 2 in the example above with whatever line it says contains the offending key.
Yes this was the best and easiest solution out of all.
thanks
Chris,
Good point / tip, if I have 100′s of ssh server; it will be a problem for me.
Appreciate your post.
The right way to do this is with “ssh-keygen -R ip-address”.
–Amos
Cool, I’ll try that next time….Thanks Amos!
Theres actually a script that does this at
http://blog.hacker.dk/2008/01/script-to-fix-ssh-host-identification-changed/
Aparently it doesnt use the sshkeygen, but it does the work nicely and easy:
script
thanks Amos for the correct way to update rsa host keys.
Thanks for nice solution.
The above mentioned problem I face when remote computer completely formated and they give us again ssh connection. And because of RSA digital signature of computer identification the local computer does not accept the remote computer (as I think).
Once again thanks for solution.
Regards,
Deepen
Thanks, your solution worked for my SSH login. Currently still can’t log in properly through my ltsp server. It says it is checking the password and then ends the session. I definitely have a link to the server (i.e. and address) Any ideas about this? Thank-you in advance.
It works fo me :)
vi ~/.ssh/known_hosts
dd
:wq
dd worked for me too, tks.
Thanks for the solution
Hi,
I’m getting the same error. I compared the RSA keys in my known_hosts file with the host key of the remote computer….they are the same. I thought I’d find out if it is a genuine MITM attack or not, so I shut down the SSH server on the remote machine and accepted the newly presented key. Connection to the remote machine now yields a “Permission denied” message, since I use public-private key authentication.
Does this mean that I am, in fact, being subjected to a MITM attack?
Thanks.
Above mentioned problem was solved. I restarted the remote machine, and everything started working properly..
Weird….
Thanks. Good job.
Thanks….it’s works for my.greetings from argentine!!! bye
I had same problem.,, i tried to used Amos Sapira suggest.
#ssh-keygen -R ip_that_have_problem
and.. IT WORKS..
thanx a lot guys…
Regard … TGUNTARA
just for help :
the port of a ssh wasn’t 22.
I need to ssh-keygen -R [ip]:port
(keep the ‘[‘)
in my case I had another problem:
I had set the options
UserKnownHostsFile=no
StrictHostKeyChecking=no
in my config and this prevented the new host to be added to known_hosts. I got the error every time I tried to contact the host and never got a prompt to add it to known hosts.
Big help especially solution number 3. :)
Finally get rid of that error message. Made me really paranoid of the “eavesdropping” thing.
Thanks a lot for the tip.
hi, thansk a lot.. solution 3 worked :)
got one better for you.
ssh -1 host fails, asking for password, even though pub key is correct on remote host.
subsequent ssh -1 host fails with man-in-the-middle warning. this is an endless cycle.
ssh -2 host works fine from the command line. from the veritas netbackup NBU_include.pl script, that same command fails on auth error.
;-)
Thanks, very helpful
thanks
thanks for the solution to this! I used:
vi ~/.ssh/known_hosts
dd
:wq
thanks for solutions
Thank you for the post, this helped me get back into my ipod 2 gen after I messed up badly by accidentally removing the folder labeled System. You’re awesome!
Thanks. I never knew about ssh-keygen -r {IP-Address}
Thanks for the solo, quick & painless! Appreciate it!
it’s work for me, tks!
Hi guys,
thanks fo rthe solution I have also one query when I am doing vncviewer 10.1.1.1:3 (example) then I am getting the message “vncviewer : unable to open dislpay ’0.0′ “.
what may be the problem . I checked with echo $DISPLAY >>> it is 0.0.
This article was helpful. Thanks
Thanks Men, this has worked for me
Thanks a lot for the solution , It has worked for me .
Thanks very much!! That fixed my ssh problem.
Thanks for the solution. Option 1 worked like a charm.
Amazing, it resolved…
Used this method…
$ ssh-keygen -R server.example.com
gracias
Hi Vivek, these articles have been very helpful to me. Thank you very much !
Your website rocks!
Thanks; solution 1 saved my day !
thanks solution #1 saved me.
So – I can’t really tell you if any of these solutions work. There’s another Problem in my warning message:
It says:
“Add correct host key in /Users/jannis/.ssh/known_hosts to get rid of this message.”
Buuut – there is no directory called “/Users/jannis/….” – so I can’t really find this file.
By the way: the file isn’t in my home directory either.
Please tell me anybody has a solution for this D:
Thanks for providing multiple solutions to the same problem :)
Thanx very helpful info.It help me thanx again..:)
I was booting the same hardware with different media, so completely different OSs and needed BOTH ssh keys to work. The solution
ssh-keyscan -t rsa ip_address >> ~/.ssh/known_hosts
Thank you – I’m very new to networking at this level, this advice was priceless.
Page bookmarked.
O
the 3° solution was correct for me ;)
thanks.