一、场景
克隆代码库发生报错
二、具体报错信息
Unable to negotiate with XXX port : no matching host key type found. Their offer: ssh-rsa,ssh-dss
三、解决方案
# 首先保证在主目录下方,如果不是先运行: cd ~
cd .ssh
vim config
如果没有.ssh目录就新建一个运行:mkdir .ssh
然后往config文件中添加以下信息:
Host *
HostkeyAlgorithms +ssh-rsa
PubkeyAcceptedKeyTypes +ssh-rsa
再次尝试即可成功文章来源:https://www.toymoban.com/news/detail-506550.html
文章来源地址https://www.toymoban.com/news/detail-506550.html
到了这里,关于【已解决】Unable to negotiate with XXX port : no matching host key type found. Their offer: ssh-rsa的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!