본문 바로가기
Jenkins

[Jenkins] Linux(Ubuntu 18.04, CentOS 7) 환경 Jenkins 설치

by 임채훈 2020. 10. 13.

Linux 환경에서 Jenkins CI/CD 설치하기

  • What is Jenkins ? : Jenkins는 소프트웨어 구축, 테스트, 빌드, 배포와 관련된 모든 종류의 작업을 자동화하는데 사용할 수 있는 독립된 오픈소스 자동화 서버이며 CI/CD(Continuous Integration/Continuous Delivery) 자동화 환경 구성에 편리함을 제공한다.
  • Version : 2.235.3
  • Documentation
 

Jenkins User Documentation

Jenkins – an open source automation server which enables developers around the world to reliably build, test, and deploy their software

www.jenkins.io

 

 

CensOS 7.7 환경

1. Jenkins Repository 등록

wget -O /etc/yum.repos.d/jenkins.repo <https://pkg.jenkins.io/redhat-stable/jenkins.repo>

2. Repository Key 등록

rpm --import <https://pkg.jenkins.io/redhat-stable/jenkins.io.key>

3. Jenkins 설치

yum install jenkins

4. 설정파일 위치 및 수정

vi /etc/sysconfig/jenkins

 

Ubuntu 18.04 환경

1. 저장소 키 추가

wget -q -O - <https://pkg.jenkins.io/debian-stable/jenkins.io.key> | sudo apt-key add - deb <https://pkg.jenkins.io/debian-stable> binary/

2. Package Manager Update

apt-get update

3. Jenkins 설치

apt-get install jenkins

4. 설정파일 위치 및 수정

vi /etc/default/jenkins

댓글