侧边栏壁纸
博主头像
nivnek博主等级

道阻且长,行则将至

  • 累计撰写 21 篇文章
  • 累计创建 27 个标签
  • 累计收到 1 条评论

目 录CONTENT

文章目录

TCP connection reset by peer

kenvin
2022-11-11 / 0 评论 / 0 点赞 / 206 阅读 / 1156 字

issues description:

 About to connect() to github.com port 443 (#0)
*   Trying 20.205.243.166...
* Connected to github.com (20.205.243.166) port 443 (#0)
* Initializing NSS with certpath: sql:/etc/pki/nssdb
*   CAfile: /etc/pki/tls/certs/ca-bundle.crt
  CApath: none
* NSS error -12190 (SSL_ERROR_PROTOCOL_VERSION_ALERT)
* Peer reports incompatible or unsupported protocol version.
* Closing connection 0
curl: (35) Peer reports incompatible or unsupported protocol version.

Solution

upgrade local server curl

#Centos
sudo yum  update curl
#ubuntu 
sudo apt update curl
# Mac os
brew upgrade curl
0

评论区