jenkins 장비의 플러그인 목록을 형상관리 안하는 경우가 많다.. 플러그인 설정이 있어도 플러그인이 없으면 복구 할 수 없다.
jenkins 장비의 플러그인 목록을 보려면 http://장비명:8080/script에 다음 커맨드를 실행한다.
Jenkins.instance.pluginManager.plugins.each{
plugin ->
println ("${plugin.getShortName()}: ${plugin.getVersion()}")
}
결과는 다음과 같다.
Git plugin (git): 3.9.1 JavaScript GUI Lib: ACE Editor bundle plugin (ace-editor): 1.1 SCM Sync Configuration Plugin (scm-sync-configuration): 0.0.10 Pipeline: Job (workflow-job): 2.24
..
jenkins master를 제대로 복구할 때,
플러그인 이름과 버전, jenkins 버전.. 이 매우 중요하다.
'general java' 카테고리의 다른 글
[springboot2] thymeleaf 사용할 때 주의할 점 (0) | 2019.08.20 |
---|---|
[jenkins] sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target , PKIX path building failed 해결하기 (0) | 2019.06.17 |
[gradle] proxy 설정 (0) | 2019.04.01 |
[Spring boot2-jpa] Validation failed for query for method... 에러 (0) | 2019.04.01 |
spring boot 2의 test 종류 (0) | 2019.03.31 |