Ssh connection to the server gives the warning below:
1 |
Warning: the ECDSA host key for 'hdp1003' differs from the key for the IP address '192.168.1.105' |
Fix: remove entry for this IP
1 |
ssh-keygen -R 192.168.1.105 |
or for specific user
1 |
ssh-keygen -f "/root/.ssh/known_hosts" -R 192.168.1.105 |