Jenkins/linuxインストール
提供: 初心者エンジニアの簡易メモ
目次
jenkinsとは
cronの高性能guiツール
リポジトリ登録
# wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat/jenkins.repo # rpm --import http://pkg.jenkins-ci.org/redhat/jenkins-ci.org.key
jenkinsインストール
# yum -y install jenkins
jenkins設定ファイル
# vi /etc/sysconfig/jenkins
jenkinsデフォルトホーム
$ cd /var/lib/jenkins
jenkins起動
/etc/rc.d/init.d/jenkins start
自動起動
/sbin/chkconfig jenkins on /sbin/chkconfig --list jenkins
http表示
http://localhost:8080
503だったときは起動から1分程度待ってみる
jenkins.localhostで表示する
- vi /etc/httpd/conf/httpd.conf
<VirtualHost *:80> ServerName jenkins.localhost <Location /> ProxyPass http://localhost:8080/ ProxyPassReverse http://localhost:8080/ </Location> </VirtualHost>
- apache再起動
- クライアント側のhostsに以下記載(xxxはサーバIP
***.***.***.*** jenkins.localhost