SSL 업데이트 오류 대응
849 단어 Linuxletsencryptssltech
질문: Let's Encerypt의 루트 인증서 오류
$certbot renew
...
ConnectionError: HTTPSConnectionPool(host='acme-v02.api.letsencrypt.org',
port=443): Max retries exceeded with url: /directory (Caused by
SSLError(SSLError("bad handshake: Error([('SSL routines',
'tls_process_server_certificate', 'certificate verify failed')],)",),))
certbot renew
에서 이런 오류가 발생한 원인은 몇 가지가 있다.이번 원인은 루트 인증서가 기한이 지났기 때문이다.
실행
$ curl -v https://acme-v02.api.letsencrypt.org/directory
시나는
curl: (60) Peer's Certificate issuer is not recognized.
에 오류가 발생했다는 것을 알아차렸다.대응
yum -y install ca-certificates
에 완료되었습니다.
Reference
이 문제에 관하여(SSL 업데이트 오류 대응), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/kino_dev/articles/0063dd906eda7e텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)