标签:
安装方法所在网址: https://wiki.jenkins-ci.org/display/JENKINS/Installing+Jenkins+on+Ubuntu
在安装jenkins之前,ubutun上需要安装有jdk和jre。建议安装 openjdk-7-jre 和openjdk-7-jdk 版本 。
安装:
wget -q -O - https://jenkins-ci.org/debian/jenkins-ci.org.key | sudo apt-key add - sudo sh -c ‘echo deb http://pkg.jenkins-ci.org/debian binary/ > /etc/apt/sources.list.d/jenkins.list‘ sudo apt-get update sudo apt-get install jenkins
更新:
sudo apt-get update sudo apt-get install jenkins
安装完成后用浏览器 http://localhost:8080/ 就可以打开。
标签:
原文地址:http://www.cnblogs.com/rohens-hbg/p/5044751.html