原文链接:http://www.bubuko.com/infodetail-1277720.html
问题原型
[root@POT-DOG ~]# wget https://storage.googleapis.com/golang/go1.8.linux-amd64.tar.gz
--2017-10-04 22:42:01-- https://storage.googleapis.com/golang/go1.8.linux-amd64.tar.gz
正在解析主机 storage.googleapis.com (storage.googleapis.com)... 216.58.200.240, 2404:6800:4008:801::2010
正在连接 storage.googleapis.com (storage.googleapis.com)|216.58.200.240|:443... 已连接。
无法建立 SSL 连接。
问题原因
wget在使用HTTPS协议时,默认会去验证网站的证书,而这个证书验证经常会失败。
解决方案
原命令加上"--no-check-certificate"选项,就能排除掉这个错误。
EX:
[root@POT-DOG ~]# wget --no-check-certificate https://storage.googleapis.com/golang/go1.8.linux-amd64.tar.gz
--2017-10-04 22:50:02-- https://storage.googleapis.com/golang/go1.8.linux-amd64.tar.gz
正在解析主机 storage.googleapis.com (storage.googleapis.com)... 216.58.200.48, 2404:6800:4008:800::2010
正在连接 storage.googleapis.com (storage.googleapis.com)|216.58.200.48|:443... 已连接。
已发出 HTTP 请求,正在等待回应... 200 OK
长度:89803580 (86M) [application/x-gzip]
正在保存至: “go1.8.linux-amd64.tar.gz”
100%[=============================================>] 89,803,580 10.3MB/s 用时 8.9s
2017-10-04 22:50:12 (9.67 MB/s) - 已保存 “go1.8.linux-amd64.tar.gz” [89803580/89803580])
正在解析主机 storage.googleapis.com (storage.googleapis.com)... 216.58.200.48, 2404:6800:4008:800::2010
正在连接 storage.googleapis.com (storage.googleapis.com)|216.58.200.48|:443... 已连接。
已发出 HTTP 请求,正在等待回应... 200 OK
长度:89803580 (86M) [application/x-gzip]
正在保存至: “go1.8.linux-amd64.tar.gz”
100%[=============================================>] 89,803,580 10.3MB/s 用时 8.9s
2017-10-04 22:50:12 (9.67 MB/s) - 已保存 “go1.8.linux-amd64.tar.gz” [89803580/89803580])