您现在的位置是:首页 >其他 >使用git clone 拉去git仓库地址时报错 Failed to connect to github.com port 443: Timed out网站首页其他

使用git clone 拉去git仓库地址时报错 Failed to connect to github.com port 443: Timed out

D浩DzD 2023-05-19 00:00:03
简介使用git clone 拉去git仓库地址时报错 Failed to connect to github.com port 443: Timed out

问题描述

最近发现访问不了GitHub
使用ping 连接失败

ping github.com

甚至连GitHub中的项目拉取不下来,报错信息如下:
fatal: unable to access ‘https://github.com/josdejong/mathjs.git/’: Failed to connect to github.com port 443: Timed out
在这里插入图片描述

尝试寻找解决问题

在网上查解决办法,有的说 git 所设端口与系统代理不一致,需重新在电脑设置中的网络里面的代理,打开手动代理,去重新设置代理。
因为之前自己确实有使用科学上网所以以为是这个导致的。
在这里插入图片描述

发现问题没解决,不过学到了几个命令行

// 设置代理
git config --global http.proxy http://127.0.0.1:7890 
git config --global https.proxy http://127.0.0.1:7890

// 取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy

一通瞎操作后发现报了其他错误
fatal: unable to access ‘https://github.com/josdejong/mathjs.git/’: OpenSSL SSL_read: Connection was reset, errno 10054
在这里插入图片描述
一般是因为服务器的SSL证书没有经过第三方机构的签署,所以才报错上面的错
解决办法:
解除ssl验证

git config --global http.sslVerify false
git config --global https.sslVerify false

问题又回到了fatal: unable to access ‘https://github.com/josdejong/mathjs.git/’: Failed to connect to github.com port 443: Timed out

问题解决

最后发现是我hosts文件中的配置问题导致的,以前为了解决下包慢的问题,做了下面一些操作

有些包在国内镜像中没有及时更新, 或者根本没有.
国外站点下载不通畅多是因为在「域名 => IP」阶段受阻
我们的解决方案就是提前把「域名与IP的对应关系」准备好,放在本在 hosts 文件中

在这里插入图片描述
发现配置中的IP地址已经不同了,通过https://ip138.com/ 查找其相应的 IP 地址, 然后把 IP地址与域名的对应信息更新到上面 hosts 文件中。
其实直接删除hosts中GitHub相关的「域名与IP的对应关系」也能解决。
最后在cmd下执行ipconfig/flushdns 清理DNS缓存。

ipconfig/flushdns

如果还报错OpenSSL SSL_read: Connection was reset, errno 10054,就把https换成git在拉取一次就可以了,再多清理几次DNS缓存
在这里插入图片描述

风语者!平时喜欢研究各种技术,目前在从事后端开发工作,热爱生活、热爱工作。