Linux 환경에서 Jenkins CI/CD 설치하기
- What is Jenkins ? : Jenkins는 소프트웨어 구축, 테스트, 빌드, 배포와 관련된 모든 종류의 작업을 자동화하는데 사용할 수 있는 독립된 오픈소스 자동화 서버이며 CI/CD(Continuous Integration/Continuous Delivery) 자동화 환경 구성에 편리함을 제공한다.
- Version : 2.235.3
- Documentation
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
'Jenkins' 카테고리의 다른 글
[Jenkins] SSH Jump Host 간단하게 설정과 SSH Proxy (Jenkins SSH Proxy) (0) | 2020.10.20 |
---|
댓글