본문 바로가기

Build Tool, CI, CD/Jenkins4

728x90
반응형
젠킨스(Jenkins) 오류 - "hudson.plugins.git.GitException: Could not init" 현상아래의 메시지가 빌드 로그에 나타난다.Started by GitLab push by userRunning as SYSTEMBuilding in workspace /home/jenkins/.jenkins/workspace/projectThe recommended git tool is: NONEusing credential 0000000-0000-0000-0000-Cloning the remote Git repositoryCloning repository https://127.0.0.1:443/road_toll/project > git init /home/jenkins/.jenkins/workspace/project # timeout=10ERROR: Error cloning remote repo 'ori.. 2024. 6. 11.
젠킨스(Jenkins) 캐시 공간 부족 경고 해결 방법 현상아래의 문구과 사진처럼 젠킨스(Jenkins)가 캐시 공간이 부족하면 경고 메시지가 나타난다.WARNING [Handling GET /static/82ebc488/images/svgs/logo.svg from : https-openssl-apr-8082-exec-1] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/images/svgs/logo.svg] to the cache for web application [] because there was insufficient free space available after evicting expired cache entries - consider incre.. 2024. 5. 22.
젠킨스(Jenkins) 자격증명(Credential) 삭제하기 젠킨스(Jenkins)에서 자격증명(Credential)을 삭제하려면 'Dashboard' → 'Manage Jenkins' → 'Credentials' 순서로 화면을 이동하여야 한다.삭제할 자격증명을 아래의 사진처럼 'Delete' 버튼을 클릭하여 삭제한다. 2024. 5. 19.
젠킨스(Jenkins)에서 깃(Git) 자격증명 유효성 검사 실패할 때 조치 방법 오류 화면과 원인젠킨스(Jenkins)에서 깃(Git)을 설정할 때 아래와 같이 자격증명 유효성 검사에서 실패가 발생하는 경우가 있다. 자격증명이 유효하지 않아서 그런 것인데 이 경우 자격 유효성 검사를 비활성화 하면 정상적으로 이용이 가능하다.server certificate verification failed. CAfile: none CRLfile: none깃 설정 확인아래의 명령어를 입력하여 'http.sslVerify'가 설정되어 있는지 확인한다.git config --list깃 자격 증명 유효성 검사 설정아래의 사진처럼 아래의 명령어를 입력하여 자격증명확인을 비활성화 한다.git config --global http.sslVerify false참고문서"Git에서 "SSL certificate p.. 2024. 5. 16.