完美解决 WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!

  • 拉取代码时报错:

    sh 复制代码
    # Mac 报错
    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    @    WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!     @
    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
    Someone could be eavesdropping on you right now (man-in-the-middle attack)!
    It is also possible that a host key has just been changed.
    The fingerprint for the ED25519 key sent by the remote host is
    SHA256:88E6751+dflNKvWOxzg2/98Vfg+P4ZWErIR7iTckhBM.
    Please contact your system administrator.
    # 注意这里:/Users/xxx/.ssh/known_hosts   known_hosts的路径
    Add correct host key in /Users/xxx/.ssh/known_hosts to get rid of this message.
    Offending ED25519 key in /Users/xxx/.ssh/known_hosts:2
    Host key for gitlab.hapi123.net has changed and you have requested strict checking.
    Host key verification failed.
    致命错误:无法读取远程仓库。
    
    请确认您有正确的访问权限并且仓库存在。
    sh 复制代码
    # windows 报错
    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@  
    @ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @  
    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@  
    IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!  
    Someone could be eavesdropping on you right now (man-in-the-middle attack)!  
    It is also possible that a host key has just been changed.  
    The fingerprint for the ED25519 key sent by the remote host is  
    SHA256:KuBLGFm/xkm0bpWVSGzQaT1Qqekl74Ui8TWnmtrEwpU.  
    Please contact your system administrator.  
    # 注意这里:/c/Users/xxx/.ssh/known_hosts   known_hosts的路径
    Add correct host key in /c/Users/xxx/.ssh/known_hosts to get rid of this message.  
    Offending ED25519 key in /c/Users/xxx/.ssh/known_hosts:3  
    Host key for gitlab.hapi123.net has changed and you have requested strict checking.  
    Host key verification failed.  
    fatal: Could not read from remote repository.  
    
    Please make sure you have the correct access rights
  • WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! 翻译过来就是:警告:远程主机标识已更改!

    此报错是由于远程的主机的公钥发生了变化导致的。ssh 服务是通过公钥和私钥来进行连接的,它会把每个曾经访问过计算机或服务器的公钥(public key),记录在 ~/.ssh/known_hosts 中,当下次访问曾经访问过的计算机或服务器时,ssh 就会核对公钥,如果和上次记录的不同,OpenSSH 会发出警告。

    当两个设备第一次进行链接时,会在 ~/.ssh/konwn_hosts 中将被连接设备的公钥信息进行保存,后续再次链接时 OpenSSH 会核对公钥来进行一个简单的验证

  • 【解决方法】找到报错中 known_hosts 的路径,进入该目录,删除掉 known_hostsknown_hosts.old 文件,然后重新执行之前报错的命令,应该会提示是否确定授权,输入 yes 就行了。

    另外需要注意线上对应的公钥确实是你本机的 rsa 公钥。

    sh 复制代码
    # 进入目录(这个路径在上面的报错中有体现,有注释标记)
    $ cd /Users/xxx/.ssh
    
    # 移除文件
    $ sudo rm -rf known_hosts known_hosts.old
    
    # 然后再次执行报错的命令
相关推荐
i建模13 小时前
通过命令行使用密钥登录远程SSH主机
运维·ssh
1candobetter14 小时前
GitLab 项目创建与分支管理全流程
gitlab
wd52052117 小时前
常用环境部署(二十九)——Centos升级OpenSSH 10.2p1
linux·运维·centos·ssh
深念Y20 小时前
光猫改桥接模式实战:通过Telnet获取超级管理员密码
ssh·路由器·桥接模式·逆向·光猫·telent·管理员密码
徒 花2 天前
ubuntu远程连接ssh及VSCode配置远程ssh连接ubuntu
vscode·ubuntu·ssh
闲猫2 天前
Java ApacheSSHD实现SSH代理
运维·服务器·ssh
zhougl9962 天前
配置SSH免密
网络·ssh·php
林鸿群2 天前
Ubuntu 26.04 本地安装 GitLab CE 完整教程(非 Docker 方式)
linux·ubuntu·gitlab·私有部署·代码托管·ubuntu 26.04·omnibus
鹓于2 天前
手机SSH直连电脑运行iflow终极安全配置
windows·安全·ssh
梦醒过后说珍重3 天前
【踩坑记录】局域网使用 mDNS 免 IP 登录服务器,却被代理 Fake-IP 劫持的排查过程
ssh