반응형

Error code 모음/9. Jenkins Errors 4

[Jenkins Error] Jenkins Permission denied sudo: no tty present and no askpass program specified

1. 에러 원인 jenkins 에 sudo 권한이 없어서 발생한 에러 2. 해결 방법 편법이긴 하지만... jenkins 에 sudo 권한을 주어 이 문제를 해결... 1) sudo 편집창 연다 $> sudo su - $> visudo # 그 후 아래의 구문 추가 뒤 저장 jenkins ALL=(ALL) NOPASSWD: ALL 위치는 대략적으로 아래와 같다.. 그 이후 shell script 에 sudo 를 붙인다

[Jenkins Error] jenkins Couldn't find any revision to build. Verify the repository and branch configuration for this job.

1. 에러 원인 에러 원인은 최근 github브랜치가 master가 아닌 main이 주 브랜치로 변경이 되어 master 로 기입이 된 브랜치를 찾지못해 발생한 에러같았다. 2. 해결 방법 */master -> */main으로 바꿔준다. 3. 참고 링크 https://honeyinfo7.tistory.com/302 [Jenkins 에러일지] jenkins Couldn't find any revision to build. Verify the repository and branch configuration for this job. 다음과 같은 에러가 발생하였다. jenkins Couldn't find any revision to build. Verify the repository and branch conf..

[Git Error] - Jenkins : last delivery was not successful invalid http response 403

1. 에러 원인 해당 에러는 젠킨스와 git 이 제대로 webhook 이 안되었을때 발생한다. 2. 해결 방법 젠킨스는 로그인이 필요한 서비스이기 때문에 링크 앞에 아이디 비번을 기입해주어야만 한다. https://foo:password@jenkins.example.com/github-webhook/ 자세한 내용은 아래 링크를 참고 3. 참고 링크 https://stackoverflow.com/questions/7427557/jenkins-and-github-webhook-http-403 Jenkins and GitHub webhook: HTTP 403 I have a GitHub repository which I would like to have notify Jenkins of new commits v..

[Linux Error] - Jenkins : I'm getting error "Public key for jenkins-2.232-1.1.noarch.rpm is not installed" while installing AWS on Jenkins

1. 에러 원인 Correct public key URL can be found on Jenkins Redhat Packages page. Just run the command below to import it: 이 문구로 보았을 때는 jenkins 를 위해 사용한 url 이 correct 한 public key 가 없었던 것 같다 2. 해결 방법 $> sudo rpm --import https://pkg.jenkins.io/redhat-stable/jenkins.io.key 위 url 을 사용한 다음에 $> sudo yum install jenkins 를 했더니 정상적으로 설치가 되었다 3. 참고 링크 https://stackoverflow.com/questions/61344317/im-getting-..

반응형