How to remove an ssh host by name or ip from your authorized hosts file.
ssh-keygen -R {server.example.com}
ssh-keygen -R {ssh.server.ip.address}
How to remove an ssh host by name or ip from your authorized hosts file.
ssh-keygen -R {server.example.com}
ssh-keygen -R {ssh.server.ip.address}
Sometimes when you connect to a ssh server whois host key has changed, ssh client warns you about it. If you want to ignore that advice use StictHostkeyChecking no option.
ssh -o 'StrictHostKeyChecking no' [email protected]