Dubbo實戰教程--Hudson持續整合伺服器的安裝配置與使用
IP:192.168.4.221 8G記憶體(Hudson多個工程在同時構建的情況下比較耗記憶體)
環境:CentOS 6.6、JDK7
Hudson不需要用到資料庫
Hudson只是一個持續整合伺服器(持續整合工具),要想搭建一套完整的持續整合管理平臺,還需要用到前面課程中所講到的SVN、Maven、Sonar等工具,按需求整合則可。
1、 安裝JDK並配置環境變數(略)
JAVA_HOME=/usr/local/java/jdk1.7.0_72
2、 Maven本地倉庫的安裝(使用Maven作為專案構建與管理工具):
(1)下載maven-3.0.5
(注意:建議不要下載3.1或更高版本的
# wgethttp://mirrors.hust.edu.cn/apache/maven/maven-3/3.0.5/binaries/apache-maven-3.0.5-bin.tar.gz
(2)解壓:
# tar -zxvfapache-maven-3.0.5-bin.tar.gz
# mv apache-maven-3.0.5 maven-3.0.5
(3)配置Maven環境變數:
# vi /etc/profile
## maven env
export MAVEN_HOME=/root/maven-3.0.5
export PATH=$PATH:$MAVEN_HOME/bin
# source /etc/profile
(4)Maven本地庫配置:
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<localRepository>/root/maven-3.0.5/.m2/repository</localRepository>
<interactiveMode>true</interactiveMode>
<offline>false</offline>
<pluginGroups>
<pluginGroup>org.mortbay.jetty</pluginGroup>
<pluginGroup>org.jenkins-ci.tools</pluginGroup>
</pluginGroups>
<!--配置許可權,使用預設使用者-->
<servers>
<server>
<id>nexus-releases</id>
<username>deployment</username>
<password>deployment123</password>
</server>
<server>
<id>nexus-snapshots</id>
<username>deployment</username>
<password>deployment123</password>
</server>
</servers>
<mirrors>
</mirrors>
<profiles>
<profile>
<id>edu</id>
<activation>
<activeByDefault>false</activeByDefault>
<jdk>1.6</jdk>
</activation>
<repositories>
<!-- 私有庫地址-->
<repository>
<id>nexus</id>
<url>http://localhost:8081/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<!--外掛庫地址-->
<pluginRepository>
<id>nexus</id>
<url>http://localhost:8081/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
<profile>
<id>sonar</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<!-- Example for MySQL-->
<sonar.jdbc.url>
jdbc:mysql://localhost:3306/sonarqube?useUnicode=true&characterEncoding=utf8
</sonar.jdbc.url>
<sonar.jdbc.username>root</sonar.jdbc.username>
<sonar.jdbc.password>wusc.123</sonar.jdbc.password>
<!-- Optional URL to server. Default value is http://localhost:9000 -->
<sonar.host.url>
http://localhost:9090/sonarqube
</sonar.host.url>
</properties>
</profile>
</profiles>
<!--啟用profile-->
<activeProfiles>
<activeProfile>edu</activeProfile>
</activeProfiles>
</settings>
3、 配置HudsonHome,在/root目錄下建立HudsonHome目錄,並配置到環境變數
# mkdir HudsonHome
切換到root使用者,在/etc/profile中配置全域性環境變數
# vi /etc/profile
## hudson env
export HUDSON_HOME=/root/HudsonHome
# source /etc/profile
4、 下載最新版Tomcat7,當前最新版為7.0.59:
5、 解壓安裝Tomcat:
# tar -zxvfapache-tomcat-7.0.59.tar.gz
# mv apache-tomcat-7.0.59 hudson-tomcat
移除/root/hudson-tomcat/webapps目錄下的所有檔案:
# rm -rf /root/hudson-tomcat/webapps/*
將Tomcat容器的編碼設為UTF-8:
#vi /root/hudson-tomcat/conf/server.xml
<Connector port="8080"protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" URIEncoding="UTF-8" />
如果不把Tomcat容器的編碼設為UTF-8,在以後配置Hudson是有下面的提示:
設定hudson-tomcat的記憶體
#vi /root/hudson-tomcat/bin/catalina.sh
#!/bin/sh下面增加:
JAVA_OPTS='-Xms512m -Xmx2048m'
6、 下載最新版的Hudson(這裡是3.2.2版)包:
# wget http://mirror.bit.edu.cn/eclipse/hudson/war/hudson-3.2.2.war
將war包拷貝到hudson-tomcat/weapps目錄,並重命名為hudson.war
# cp /root/hudson-3.2.2.war /root/hudson-tomcat/webapps/hudson.war
7、 防火牆開啟8080埠,用root使用者修改/etc/sysconfig/iptables,
# vi /etc/sysconfig/iptables
增加:
## hudson-tomcat port:8080
-A INPUT -m state --state NEW -m tcp -p tcp--dport 8080 -j ACCEPT
重啟防火牆:
# service iptables restart
8、 設定hudson-tomcat開機啟動:
在虛擬主機中編輯/etc/rc.local檔案,
# vi /etc/rc.local
加入:
/root/hudson-tomcat/bin/startup.sh
9、 啟動hudson-tomcat
# /root/hudson-tomcat/bin/startup.sh
10、 配置Hudson:
初始化安裝需要安裝3個預設勾選中的外掛(如上圖紅色部分),其它外掛可以等初始化安裝完成之後再選擇安裝。
點選“Install”安裝按鈕後,需要等待一會時間才能安裝完成。安裝完成後按“Finish”按鈕。
安裝的外掛儲存在 /root/HudsonHome/plugins 目錄。
(2)初始化完成後就會進行Hudson的配置管理介面:
安全配置
啟用安全配置
使用專案矩陣授權策略
註冊一個超級管理員賬號
系統設定
配置系統資訊、JDK、Maven
儲存後的效果
外掛安裝
結合我們想要實現的持續整合功能,需要安裝如下幾個外掛。如想整合更多功能,自行新增外掛並配置則可。(注意:現在我們使用了SonarQube質量管理不臺,則不再需要在Hudson中單獨去安裝CheckStyle、Findbugs、PMD、Cobertura等Sonar中已有的外掛)
逐個搜尋你想要安裝的外掛並點選安裝,安裝完之後重啟Hudson。
如下圖所示:
在Hudson中配置SonarQube連結
以上就是Hudson的基本安裝和配置,更多其它配置和功能可自行擴充套件。
Hudson的使用(使用Hudson來自動化編譯、分析、打包、釋出、部署專案)
新增專案