成功解决:curl: (35) OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to bit.ly:443
openssl
传输层安全性/安全套接层及其加密库
项目地址:https://gitcode.com/gh_mirrors/ope/openssl
免费下载资源
·
执行以下指令下载Fabric二进制及docker镜像时出现标题所指的报错内容
curl -sSL https://bit.ly/2ysbOFE | bash -s -- 2.2.0 1.4.8 -s
原因是访问了国外的链接,没有vpn的情况下改变docker镜像即可成功下载该资源。
1.查看docker镜像源
docker info|grep Mirrors -A 1
显示没有设置docker镜像源
2.修改docker镜像源
vim /etc/docker/daemon.json
{
"registry-mirrors":["https://registry.docker-cn.com"]
}
按I
插入,插入完成后按ESC
退出插入,输入:wq!
保存退出
如果显示无法写入请使用sudo chmod -R 777 docker/
指令给docker最高权限方可写入。
重启docker服务
systemctl restart docker.service
查看docker镜像
docker info|grep Mirrors -A 1
docker镜像已修改成功
重启一下网络
Ubuntu
sudo /etc/init.d/networking restart
CentOS
sudo /etc/init.d/network restart
3.重新执行下载Fabric二进制及镜像的指令
curl -sSL https://bit.ly/2ysbOFE | bash -s -- 2.2.0 1.4.8 -s
成功解决:curl: (35) OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to bit.ly:443
的问题
欢迎小伙伴的讨论,若有问题请在评论区评论或私信,谢谢你。
GitHub 加速计划 / ope / openssl
25.13 K
9.99 K
下载
传输层安全性/安全套接层及其加密库
最近提交(Master分支:1 个月前 )
fd39d1c8
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/25095)
3 个月前
ae87c488
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/25095)
3 个月前
更多推荐
已为社区贡献8条内容
所有评论(0)