wget无法验证XXX办法的证书
问题:Linux使用wget 下载github中的时候报错
错误: 无法验证 github.com 的由 “/C=US/O=DigiCert Inc/CN=DigiCert TLS Hybrid ECC SHA384 2020 CA1” 颁发的证书:
颁发的证书还未生效。
要以不安全的方式连接至 github.com,使用“--no-check-certificate”。
执行命令
wget -c https://github.com/prometheus/node_exporter/releases/download/v0.18.1/node_exporter-0.18.1.linux-amd64.tar.gz
解决方案
根据错误提示返回可看到是由于安全检查的问题引起,这个时候就可以个根据错误提示进行解决,在执行命令中加入 --no-check-certificate
最终使用命令
wget -c https://github.com/prometheus/node_exporter/releases/download/v0.18.1/node_exporter-0.18.1.linux-amd64.tar.gz --no-check-certificate
这样我们就可以用不安全的方式去连接https