我有一个git服务器,它是一个CentOS服务器机器,其中存储库已经可用。 有一个AWS Ubuntu服务器要从CentOS git服务器上面克隆存储库。 现在使用git clone命令时,得到以下错误:
ssh_exchange_identification: read: Connection reset by peer
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
Git Command:'git clone ssh:// @:22 / repository1'
请帮忙解决问题?
注意: 如果已有类似问题,请分享链接。
答案 0 :(得分:1)
您是否能够成功SSH到其他服务器?如果你不能,那么我会怀疑网络配置问题 - 出口流量被安全组,IP表或代理阻止。
如果你可以在别处SSH,我怀疑Git服务器上有阻止你的IP地址的防火墙。您可以提供的任何进一步信息也有助于诊断问题。
答案 1 :(得分:1)
让我分享这次应用的解决方案。
在Git服务器的/etc/hosts.allow文件中添加了sshd <Clinet IP>
。
克隆现在没问题。