공식문서를 참고하였다. 다음과 같이 그대로 설치하면 젠킨스를 설치할 수 있다.
패키지 설치
sudo wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat-stable/jenkins.repo --no-check-certificate
sudo rpm --import https://pkg.jenkins.io/redhat-stable/jenkins.io.key
sudo yum upgrade
# Add required dependencies for the jenkins package
sudo yum install java-11-openjdk
sudo yum install jenkins
sudo systemctl daemon-reload
서비스 등록 및 시작
#서비스 활성화(재부팅시 자동 시작)
sudo systemctl enable jenkins
#서비스 시작
sudo systemctl start jenkins
#서비스 상태확인
sudo systemctl status jenkins
방화벽 해제
systemctl disable firewalld
systemctl stop firewalld
페이지 접속
브라우저에서 서버IP:8080 접속하면 아래와 같이 나오는데 패스워드는 아래 명령어를 수행하면 얻을 수 있고
그것을 패스워드 입력란에 넣는다.
cat /var/lib/jenkins/secrets/initialAdminPassword
입력하고 넘어가면 아래와 같은 화면이 나온다
install suggested plugins를 누른다.
조금 기다리면 플러그인들이 알아서 설치가 된다.
설치가 완료되면 계정 생성을 하라고 한다.
접속주소를 알려준다.
설치가 완료 된 모습이다.
참조 : https://www.jenkins.io/doc/book/installing/linux/#red-hat-centos
반응형
'인프라 > 리눅스' 카테고리의 다른 글
[centos7] svn 구축 및 활용 (0) | 2022.06.11 |
---|---|
centos7 svn: E205007: Could not use external editor to fetch log message; consider setting the $SVN_EDITOR environment variable or using the --message (-m) or --file (-F) options (0) | 2022.05.18 |
ubuntu / centos python 버전 변경하기(update-alternatives) (0) | 2022.04.24 |
Centos7 Mysql 5.7 설치 (0) | 2022.04.15 |
2022년 CentOS7 ELK 설치 (1) | 2022.04.14 |
댓글