【亲测有效】GnuTLS recv error (-110): The TLS connection was non-properly terminated.

【亲测有效】GnuTLS recv error [-110]: The TLS connection was non-properly terminated.

  • 问题描述
  • 解决方法一:【取消代理】
  • 方法二【如果取消代理无用】
  • 方法三【这种方法对我有效】

问题描述

fatal: unable to access ‘https://github.com/openai/CLIP.git/’: GnuTLS recv error (-110): The TLS connection was non-properly terminated.
如图:
【亲测有效】GnuTLS recv error (-110): The TLS connection was non-properly terminated._第1张图片
如果设置了代理则可能会出现类似下面的错误:
git下载出现:Failed to connect to 127.0.0.1 port 1080: Connection refused拒绝连接错误

解决方法一:【取消代理】

通过git的配置文件查看有无使用代理

git config --global http.proxy

git config --global https.proxy

若是有返回值,则使用下面命令取消代理

git config --global --unset http.proxy
git config --global --unset https.proxy

或者
打开c:\Users\当前用户目录下的.gitconfig文件(该文件默认是隐藏的)。将里面关于proxy的行删除

显示隐藏文件按:

Ctrl+H

这种方法对我无效。

方法二【如果取消代理无用】

若需使用代理,http协议和socket协议的配置分别如下,以8080端口为例:

可能是软件代理的问题,使用命令

git config --global http.proxy 127.0.0.1:(代理端口号)

将代理端口改为和软件一致就行了。

# http
git config --global http.https://github.com.proxy http://127.0.0.1:8080
git config --global https.https://github.com.proxy https://127.0.0.1:8080
# socket
git config --global http.proxy 'socks5://127.0.0.1:8080'
git config --global https.proxy 'socks5://127.0.0.1:8080'

或者试试

apt-get install gnutls-bin
git config --global http.sslVerify false
git config --global http.postBuffer 1048576000

方法三【这种方法对我有效】

直接关闭梯子,Ubuntu在设置中:
【亲测有效】GnuTLS recv error (-110): The TLS connection was non-properly terminated._第2张图片
点击Network Proxy
然后选择disable即可:
【亲测有效】GnuTLS recv error (-110): The TLS connection was non-properly terminated._第3张图片成功!
【亲测有效】GnuTLS recv error (-110): The TLS connection was non-properly terminated._第4张图片

你可能感兴趣的:(霸哥(BUG)日记,ubuntu,git,linux)