Ubuntu16.04にJenkins

自宅サーバーを使っていないRaspberryPiでたてたわけだが、
Jenkinsでも入れて何かするか、、、
これでDynamicDNSの更新でもするか。

下記をシェルスクリプトにしてrootで実行。

<%code%>
#!/bin/sh

sudo apt-get install -y apache2 openjdk-8-jdk
wget -q -O – http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key | sudo apt-key add –
sudo su -c ‘echo deb http://pkg.jenkins-ci.org/debian binary/ > /etc/apt/sources.list.d/jenkins.list’
sudo apt-get update -y
sudo apt-get install -y jenkins
/etc/default/jenkins’
sudo service jenkins restart
sudo su -c ‘cat << EOF > /etc/apache2/mods-enabled/jenkins.conf
ProxyPass /jenkins http://localhost:8080
ProxyPassReverse /jenkins http://localhost:8080
ProxyRequests Off
AllowEncodedSlashes NoDecode


Order deny,allow
Allow from all

EOF’
sudo a2enmod proxy
sudo a2enmod proxy_http
sudo service apache2 restart
<%/code%>

…と思ったが、アカンなぜかJenkins自体は立ち上がってるっぽいのにアクセスできない
参考
https://www.hiroom2.com/2016/05/01/ubuntu-16-04%E3%81%ABjenkins-apache2-%E3%82%92%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB%E3%81%99%E3%82%8B/