[jenkins] sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target , PKIX path building failed 해결하기
general java 2019. 6. 17. 20:47jenkins에서 아래와 같은 Exception이 발생했다.
sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
PKIX path building failed
원인은 http 사이트에서 https 로 접속하려 할 때 자바에서 발생하는 에러이다. 이를 간단히 해결하려면
젠킨스 관리 -> Configure Global Security -> Plugin Manager -> Use browser for metadata download 를 체크 on한다.
앤서블을 사용해 자동화하는 경우라면 다음 코드를 실행한다. https가 아닌 http로 변경하는 것이다.
- name: Change Update-Center protocol - "{{ jenkins_home }}/hudson.model.UpdateCenter.xml"
replace:
path: "{{ jenkins_home }}/hudson.model.UpdateCenter.xml"
regexp: 'https://updates.jenkins.io/update-center.json'
replace: 'http://updates.jenkins.io/update-center.json'
'general java' 카테고리의 다른 글
[spring] spring cloud config 사용시 암호 관련 예시 (0) | 2019.09.17 |
---|---|
[springboot2] thymeleaf 사용할 때 주의할 점 (0) | 2019.08.20 |
jenkins 장비의 플러그인 목록 출력하기 (0) | 2019.06.11 |
[gradle] proxy 설정 (0) | 2019.04.01 |
[Spring boot2-jpa] Validation failed for query for method... 에러 (0) | 2019.04.01 |