问题描述
在进行 MHA高可用配置时,需要A机器通过ssh-copy-id root@IP(B)添加了链接到B机器的ssh秘钥。因为之前的虚拟机秘钥和这个机子上的不一致,需要重新发送,在发送时出现下面的问题:
ssh-copy-id 192.168.119.164
/usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed
/usr/bin/ssh-copy-id: ERROR: @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
ERROR: @ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @
ERROR: @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
ERROR: IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
ERROR: Someone could be eavesdropping on you right now (man-in-the-middle attack)!
ERROR: It is also possible that a host key has just been changed.
ERROR: The fingerprint for the ECDSA key sent by the remote host is
ERROR: 9d:5c:49:5f:1f:9e:c4:c3:e0:03:32:59:10:c3:c6:e1.
ERROR: Please contact your system administrator.
ERROR: Add correct host key in /root/.ssh/known_hosts to get rid of this message.
ERROR: Offending ECDSA key in /root/.ssh/known_hosts:1
ERROR: ECDSA host key for 192.168.119.164 has changed and you have requested strict checking.
ERROR: Host key verification failed.
此时无法把ssh 到 164
解决办法:
ssh-copy-id -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i /root/.ssh/id_rsa.pub root@192.168.119.164