报错问题:
fatal: unable to access ‘https://github.com/Sunyt1992/ref-comet.git/’: OpenSSL SSL_read: Connection was reset, errno 10054
OpenSSL SSL_read:连接已重置,错误号10054
字面意思:服务器的SSL证书灭有经过第三方机构的签署。
网上信息也有的说可能是网络不稳定,连接超时导致。
解决办法
第一种
git config --global https.sslVerify "false"
git config --global http.sslVerify "false"# 刷新ip缓存
ipconfig /flushdns
第二种
git push报错:OpenSSL SSL_read: Connection was reset
问题描述
好久没有跟新github今天提交了一次发现报错了
fatal: unable to access ‘https://github.com/Sunyt1992/ref-comet.git/’: OpenSSL SSL_read: Connection was reset, errno 10054
问题分析
从报错中可以看出ssl 链接重置了
解决方法
1.查看git配置
git config --global -l
2.检查环境变量
env|grep -i proxy
第三种
Failed to connect to github.com port 443 after 21058 ms: Timed out
1.取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
2.成功
最后一个是比较顽固的报错信息
按照上述方法使用后,交替出现提交异常:如下图
fatal: unable toaccess 'https://github.com/Sunyt1992/ref-comet.git/':OpenSSLSSL_read:Connection was reset, errno 10054
fatal: unable toaccess 'https://github.com/Sunyt1992/ref-comet.git/':Failedtoconnecttogithub.com port 443 after 21048 ms:Timed out
此时可以删除已经配置好的github账号,并重新配置
remote:Supportfor password authentication was removed on August13,2021.
remote:Please see https://docs.github.com/en/get-started/getting-started-with-git/about-remote-repositories#cloning-with-https-url
s for information on currently recommended modes of authentication.
fatal:Authentication failed for 'https://github.com/xxx.git/'
github在2021年8月13日开始,不再支持使用账户和密码提交代码,仅支持使用token
生成token,并保存到一个地方,因为生成后返回就看不到token,token的生成已经在之前的文章的有详细的创建流程
点击此处生成token步骤
并将生成的token填入如下图:
就会看到链接好的github账号
此时再去提交就不会出问题了
第一次提交会让输入用户名和密码
用户名:github用户名
密码:生成的token(最初以为登陆密码,折腾了好几个小时,一定要输入token)
如有问题,欢迎指正~ 如能帮到您,欢迎点赞收藏~
版权归原作者 程序猿Sunny 所有, 如有侵权,请联系我们删除。