Woopii Vyeolog

[Linux, Centos7] Jenkins 설치 본문

Linux

[Linux, Centos7] Jenkins 설치

WooPii 2022. 1. 24. 21:47

● Centos7에 Jenkins 설치

1. .Jenkins가 설치 되어 있는 지 확인

명령어 =====> yum list installed | grep jenkins

 

 

2. Jenkins 설치파일을 저장소에 다운로드

명령어 =====> wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat-stable/jenkins.repo

 

##만약 bash: wget: command not found 문구가 나오면 아래 명령어를 입력

명령어 =====> yum install -y wget

 

##만약 wget 명령어 사용 시 아래와 같은 문구가 나오면  다음 명령어 입력ERROR: cannot verify pkg.jenkins.io's certificate, issued by ‘/C=US/O=Let's Encrypt/CN=R3’:
Issued certificate has expired.
To connect to pkg.jenkins.io insecurely, use `--no-check-certificate'.

명령어 =====> echo "check_certificate = off" >> ~/.wgetrc

 

3. 키파일 Import

명령어 =====> rpm --import https://pkg.jenkins.io/redhat-stable/jenkins.io.key

 

4. Jenkins 설치

명령어 =====> yum install -y jenkins

 

## 다음과 같은 에러가 발생 시 (aws-ec2 환경에서 나타나는 에러인것 같음) 추가 명령어 입력

Error: Package: jenkins-2.319.2-1.1.noarch (jenkins) Requires: daemonize

혹은 yum install -y epel-release 명령어 입력

 

5. Jenkins 시작하기 및 상태 확인

명령어(시작하기) =====> sudo systemctl start jenkins

명령어(상태확인) =====> systemctl status jenkins.service

 

6.  Jenkins 포트번호 수정(default : 8080)

명령어 =====> vi /etc/sysconfig/jenkins 입력 후

JENKINS_PORT="원하는 포트번호" 수정

 

7. 브라우저에서 접속 

빨간 표시 되어 있는 경로로 가서 비밀번호 확인 후 입력

 

8. 접속 확인

9. Install suggested plugins 클릭 하면 기본 플러그인으로 설치 진행됨

 

10. 사용자 정보 입력 후 정상 접속

'Linux' 카테고리의 다른 글

[Linux , Centos7] MariaDB 설치  (0) 2022.01.24
[Linux, Centos7] java(Openjdk 11) 설치  (0) 2022.01.23
[Linux, Centos7] 테스트를 위한 VM 기본 세팅  (0) 2021.12.22
Comments