먼저, jenkins.repo를 yum repository에 추가한다.
# wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat-stable/jenkins.repo # rpm --import https://pkg.jenkins.io/redhat-stable/jenkins.io.key # yum upgrade -y
jdk와 함께 설치해주면 끝.
# yum install jenkins java-1.8.0-openjdk-devel -y # systemctl daemon-reload
서비스를 실행하고 상태를 확인해 준다.
# systemctl start jenkins && systemctl status jenkins
'IT > System' 카테고리의 다른 글
[httpd] SSL Library Error: error:0200100D:system library:fopen:Permission denied (0) | 2020.11.14 |
---|---|
[httpd] /etc/httpd/modules/mod_jk.so: cannot open shared object file: Permission denied (0) | 2020.11.14 |
[nginx] proxy 사용 시, index 구문 미 작동. (0) | 2020.11.14 |
[Windows] 오류: api-ms-win-crt-runtime-l1-1-0.dll이 없습니다. (0) | 2020.11.14 |
[Tomcat] centos에서 tomcat 서비스로 등록하기 (0) | 2020.11.14 |