설치
wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat-stable/jenkins.repo
rpm --import https://jenkins-ci.org/redhat/jenkins-ci.org.key
yum install jenkin
설정
CentOS의 경우 Jenkins Home 디렉토리나 포트 등의 설정은 /etc/sysconfig/jenkins에서 진행할 수 있습니다.
저의 경우 머신 하나만 가지고 진행하고 있기 때문에 애플리케이션이 사용하는 포트와 겹치지 않게 하기위해 포트를 변경하였습니다. (9000대 포트를 사용한다고 합니다)
...
## Type: integer(0:65535)
## Default: 8080
## ServiceRestart: jenkins
#
# Port Jenkins is listening on.
# Set to -1 to disable
#
JENKINS_PORT="9001"
...
실행
아래 명령어를 통해 젠킨스를 실행한 후 머신주소:설정한포트로 접속하면 드디어 젠킨스 로그인 페이지를 볼 수 있습니다.
sudo service jenkins start
반응형
'좋은지식 > 리눅스' 카테고리의 다른 글
Redhat Linux 7.9 Tomcat 10.0 설치 (0) | 2021.12.22 |
---|---|
Redhat Linux 7.9 MySQL 8.0 설치 (0) | 2021.12.16 |
Redhat Linux 7.9 openJDK 11 설치 (0) | 2021.12.09 |
Redhat Linux 7.9 GitLab CE 설치 (0) | 2021.12.07 |
Redhat Linux 7.9 PostgreSQL 설치 (0) | 2021.12.07 |