Curl error (60): Peer certificate cannot be authenticated with given CA certificates for https://mirrors.zte.com.cn/docker-ce/linux/centos/docker-ce.repo [SSL certificate problem: EE certificate key too weak]
时间: 2024-01-31 10:04:01 浏览: 182
curl https://github.com/curl/curl.git
这个错误是因为你使用的是过时的 SSL 证书,无法通过认证。建议你更新 SSL 证书或者使用最新的证书来解决这个问题。你可以尝试使用以下命令更新证书:
```
sudo yum update ca-certificates
```
如果这个命令不能解决问题,你可以尝试手动更新证书。你可以在 https://curl.haxx.se/docs/caextract.html 下载最新的证书,然后将其复制到 /etc/pki/tls/certs/ca-bundle.crt 文件中。
阅读全文