SSH Warning: the RSA host key for differs from the key for the IP address

    当ssh访问一台server时,如果出现“Warning: the RSA host key for differs from the key for the IP address”这样的信息,
    表示在known_hosts里已经有一台server和你正要访问的server的IP冲突。

    另外一条类似于这样的信息“Offending key for IP in /builds/hudson/.ssh/known_hosts:36″,表示IP冲突位于known_hosts的第36行,
    只要打开~/.ssh/known_hosts,删除第36行就可以将问题解决,或者直接运行一条命令搞定“sed -i -e ’36d’ ~/.ssh/known_hosts”。

    如果你想彻底摆脱known_hosts,将“StrictHostKeyChecking no”添加到~/.ssh/config,这样以后访问新的server都不在有known_hosts的提示。

你可能感兴趣的:(SSH Warning: the RSA host key for differs from the key for the IP address)