티스토리 뷰
반응형
재작년엔 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 인증서 만료돼서 인증서 갱신하니까 해결됐다.
반응형
'Java' 카테고리의 다른 글
[Java] Java에서 IPv4로 출력하기 (0) | 2023.06.07 |
---|---|
[Java] 최신 버전의 JDBC 사용 시 SSL(Secure Sockets Layer) 암호화 사용 에러 해결 (0) | 2023.04.11 |
[Java] Jackson json에 null 필드 제외하기 (0) | 2023.02.17 |
[Java] Spring Boot / Gradle 빌드 시 Execution failed for task ':test'. 에러 해결 (3) | 2022.05.24 |
[Java] SchemaManagementException 에러 해결 (0) | 2022.05.11 |