yum -y install java
添加JPackage源java
yum -y install wget wget http://www.jpackage.org/jpackage50.repo -P /etc/yum.repos.d/
安裝Antweb
yum -y install ant
yum -y install maven
yum -y install tomcat
設置tomcat編碼爲UTF-8tomcat
# vi /etc/tomcat/server.xmlbash
<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" URIEncoding="UTF-8" />
下載jenkins.war到webapps目錄下app
wget http://mirrors.jenkins-ci.org/war/latest/jenkins.war -P /var/lib/tomcat/webapps/
設置tomcat自啓動,並啓動tomcatwebapp
chkconfig tomcat on
service tomcat start
訪問Jenkins主頁 http://localhost:8080/jenkinsmaven
sudo wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat-stable/jenkins.repo sudo rpm --import http://pkg.jenkins-ci.org/redhat-stable/jenkins-ci.org.key yum install jenkins
設置jenkins自啓動,並啓動jenkins編碼
chkconfig jenkins on service jenkins start
jenkins默認端口是8080,若是端口已被別的程序佔用,可在jenkins配置文件/etc/sysconfig/jenkins中修改jenkins端口號spa
JENKINS_PORT="8001"
若是還安裝有tomcat程序,還需修改AJP端口號插件
JENKINS_AJP_PORT="8010"
訪問Jenkins主頁 http://localhost:8001
Jenkins可以集成各式插件,如經常使用CI插件:deploy,junit,findbugs,pmd,checkstyle,clover, duplicate code,jmeter,selenium等
點擊 「系統管理」 -> 「管理插件」
點擊 「可選插件」,選擇須要的插件
而後點擊 「直接安裝」