centos8 환경에서 설치. JAVA 설치 # dnf install java-1.8.0-openjdk-devel Jenkins Repo 생성 # vi /etc/yum.repos.d/jenkins.repo [jenkins] name=Jenkins-stable baseurl=http://pkg.jenkins.io/redhat-stable gpgcheck=1 저장 Jenkins Key 저장 # rpm --import https://pkg.jenkins.io/redhat/jenkins.io.key Jenkins 설치 # dnf install jenkins 만약에 특정 버전을 설치를 해야 한다면 yum install jenkins-2.263.4 이런식으로 하면 된다. 서비스 시작 # systemctl start..