OpenSSL SSL_read: Connection was reset, errno 10054

简介: Git 报错信息 OpenSSL SSL_read: Connection was reset, errno 10054 解决方案

git 报错信息:OpenSSL SSL\_read: Connection was reset, errno 10054

Gitpush 报错

OpenSSL SSL\_read: Connection was reset, errno 10054 ...
AI 代码解读

异常信息

Git Bash 中,push 时,出现错误

git push -u origin main

OpenSSL SSL_read: Connection was reset, errno 10054 ...
AI 代码解读

解决方案

1. 邮箱问题

查看用户名,邮箱

git config user.name
git config user.email</code>
AI 代码解读

修改,用户名,邮箱

git config --global user.name "xxx"
git config --global user.email "xxx"
AI 代码解读

移除仓库,重新添加

git remote rm origin
git remote add origin https://github.com/XXX
AI 代码解读

2.解除SSL认证

Git Bash 中输入以下命令:

git config --global http.sslVerify "false"
AI 代码解读

3.更新 DNS 缓存

cmd 窗口输入

ipconfig /flushdns
AI 代码解读

4.文件过大,超过上限

修改为 500MB,在 Git Bash 中输入以下命令:

git config http.postBuffer 5242880003
AI 代码解读

小结

多数情况下国内访问 Github 会被...,或因网络波动问题推送失败。推荐使用 SSH 方式拉去代码或者参考 开源项目 修改本机 hosts 文件解决访问问题

HelloGitHub 项目 开源镜像站

目录
打赏
0
0
0
0
35
分享
相关文章
记录解决一个小错误:Establishing SSL connection without server‘s identity verification is not recommended
本文记录了解决Spring Boot连接MySQL时出现的SSL连接警告问题的步骤,通过在数据源配置中添加`useSSL=false`来禁用SSL连接。
视觉智能开放平台操作报错合集之服务部署在pdd的服务器,调用报错:The SSL connection could not be established,该如何解决
在使用视觉智能开放平台时,可能会遇到各种错误和问题。虽然具体的错误代码和消息会因平台而异,但以下是一些常见错误类型及其可能的原因和解决策略的概述,包括但不限于:1. 认证错误、2. 请求参数错误、3. 资源超限、4. 图像质量问题、5. 服务不可用、6. 模型不支持的场景、7. 网络连接问题,这有助于快速定位和解决问题。
148 0
【Azure Redis】PHPRedis遇见SSL Connection Timeout问题
【Azure Redis】PHPRedis遇见SSL Connection Timeout问题
【Azure Redis】PHPRedis遇见SSL Connection Timeout问题
解決pod install报错:unable to access: LibreSSL SSL_read: error:Operation timed out, errno 60
解決pod install报错:unable to access: LibreSSL SSL_read: error:Operation timed out, errno 60
96 0
解决Android、Flutter编译时Gradle报错:javax.net.ssl.SSLException: Connection reset
解决Android、Flutter编译时Gradle报错:javax.net.ssl.SSLException: Connection reset
549 0
linux_nginx中添加ssl配置(open ssl)
linux_nginx中添加ssl配置(open ssl)
96 1
|
8月前
LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 60
LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 60
133 0
Linux【脚本 06】HTTPS转发HTTP安装OpenSSL、Nginx(with-http_ssl_module)及自签名的X.509数字证书生成(一键部署生成脚本分享)
Linux【脚本 06】HTTPS转发HTTP安装OpenSSL、Nginx(with-http_ssl_module)及自签名的X.509数字证书生成(一键部署生成脚本分享)
116 1
解决 OpenSSL SSL_read: Connection was reset, errno 10054的问题
解决 OpenSSL SSL_read: Connection was reset, errno 10054的问题
|
8月前
【Error】fatal: unable to access ‘https://github.com/PanJiaChen/vue-element-admin/‘: OpenSSL SSL_read:
【Error】fatal: unable to access ‘https://github.com/PanJiaChen/vue-element-admin/‘: OpenSSL SSL_read:

热门文章

最新文章

AI助理

你好,我是AI助理

可以解答问题、推荐解决方案等