If the warning is expected, the usual remedy is to delete the offending key from your "known_hosts" file (typically found under ~/.ssh/known_hosts). However, when you need to do this across a bunch of machines and you don't know what line number the host will be on, on each machine, the following command might be useful:
sed -i -e '/\[webserver-03.example.com\]:2222/d' ~/.ssh/known_hosts
It deletes any line which matches the host "[webserver-03.example.com]:2222" in the default "known_hosts" file.
No comments:
Post a Comment