메이븐 빌드를 처리할 때 PKIX 오류가 발생할 경우가 있습니다. 보통 내부망에서 사용하는 인증서가 자바의 인증서 목록에 등록되어 있지 않을 때 발생합니다.
PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
해결방법
자바의 인증서에 내부망의 인증서를 등록하면 됩니다. keytool
명령어는 사용하고자 하는 자바의 bin 폴더 아래 존재합니다. 여기에 인증서 목록(key store)의 위치를 지정하고, 인증서 파일의 경로(file)를 입력하면 됩니다. 각 경로는 절대 경로를 입력해도 됩니다.
%JAVA_HOME%\bin\keytool -importcert -keystore %JAVA_HOME%\jre\lib\security\cacerts -storepass changeit -trustcacerts -alias "CERT" -file "CERT.crt"
반응형
'Tools' 카테고리의 다른 글
[intellij] Gradle 사용시 No candidates found for method call plugins. 오류 해결방법 (0) | 2020.09.14 |
---|---|
[eclipse] git에서 추가된 브랜치 정보를 가져오지 못할 때 수정 방법 (0) | 2019.12.15 |
[java] This application requires a Java Runtime Environment 1.8.0 오류 해결방법 (0) | 2019.10.31 |
[intellij] 인텔리j 파일과 에디터 연결하는 방법 (0) | 2019.10.25 |
[intellij] Cannot start compilation: the output path is not specified for module 오류 해결 (0) | 2019.08.20 |