sudo wget -q -O - [https://pkg.jenkins.io/debian-stable/jenkins.io.key](https://pkg.jenkins.io/debian-stable/jenkins.io.key) | sudo apt-key add -
sudo sh -c 'echo deb [https://pkg.jenkins.io/debian-stable](https://pkg.jenkins.io/debian-stable) binary/ > \
/etc/apt/sources.list.d/jenkins.list'
sudo apt-get udate
sudo apt-get install jenkins
sudo systemctl start jenkins //실행
sudo systemctl stop jenkins //중지
sudo systemctl restart jenkins //재실행
sudo systemctl status jenkins //상태확인
!! 젠킨스 기본 포트는 8080, 이미 8080 포트를 사용 중이라면 중지 후 젠킨스 실행 !!
sudo cat /var/lib/jenkins/secrets/initialAdminPassword
sudo vi /usr/lib/systemd/system/jenkins/service
에서
JENKINS_PRIFIX 설정 및 JENKINS_PORT 변경 후
sudo vi /etc/default/jenkins
에서 HTTP_PORT 변경
이후 sudo systemctl daemon-reload
실행
location /jenkins {
proxy_pass http://localhost:9090/jenkins/;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
}