Java
[Java] SSL 인증서 PKIX path validation failed 에러 해결
Jane Kwon
2023. 3. 30. 15:44
반응형
재작년엔 PKIX path building failed 에러로 속을 썩이더니
(https://a-half-human-half-developer.tistory.com/100)
이번엔 PKIX path validation failed 에러 발생
I/O error on GET request for "https://jane-cpanel.com:443": sun.security.validator.ValidatorException: PKIX path validation failed: java.security.cert.CertPathValidatorException: validity check failed; nested exception is javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path validation failed: java.security.cert.CertPathValidatorException: validity check failed
SSL 인증서 만료일 확인
$ openssl s_client -connect jane-cpanel.com:443 | openssl x509 -noout -dates
depth=3 C = GB, ST = Greater Manchester, L = Salford, O = Comodo CA Limited, CN = AAA Certificate Services
verify return:1
depth=2 C = GB, ST = Greater Manchester, L = Salford, O = COMODO CA Limited, CN = COMODO RSA Certification Authority
verify return:1
depth=1 C = US, ST = TX, L = Houston, O = "cPanel, Inc.", CN = "cPanel, Inc. Certification Authority"
verify return:1
depth=0 CN = jane-cpanel.com
verify return:1
notBefore=Mar 30 00:00:00 2023 GMT
notAfter=Jun 28 23:59:59 2023 GMT
새로 인증서 내려 받아서 아무리 적용해도 서버랑은 잘 연결되는데 이 인증서 만료일만 바뀌질 않길래
사이트 접속해보니 진짜로 SSL 인증서 만료돼서 인증서 갱신하니까 해결됐다.
반응형