COMPUTER SCIENCE/LINUX
[Linux] wget certificate 오류 해결
heehehe
2021. 10. 14. 00:18
ERROR: cannot verify [wget 받을 주소]'s certificate, issued by ‘/C=US/O=Let's Encrypt/CN=R3’:
Issued certificate has expired.
To connect to [wget 받을 주소] insecurely, use `--no-check-certificate'
1. 근본적인 해결 방법
sudo yum install -y ca-certificates
2. 임시 해결방법
wget [wget 받을 주소] --no-check-certificate
반응형