CentOS Stream 9にJenkinsをインストールする
環境
CentOS Stream release 9
java 11.0.16.1
操作方法
1.リポジトリを追加します
# curl https://pkg.jenkins.io/redhat-stable/jenkins.repo > /etc/yum.repos.d/jenkins.repo % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 85 100 85 0 0 71 0 0:00:01 0:00:01 --:--:-- 71
2.「jenkins.io.key」鍵をインポートします
# rpm --import https://pkg.jenkins.io/redhat-stable/jenkins.io.key
3.jenkinsをインストールします
# dnf -y install jenkins
4.配置ファイルを設定します
# nano /etc/sysconfig/jenkins
67行目
修正前
JENKINS_LISTEN_ADDRESS=""
修正後
JENKINS_LISTEN_ADDRESS="0.0.0.0″
5.jenkinsを自動起動を有効にして起動します
# sudo systemctl start jenkins # sudo systemctl enable jenkins