HUDSON(一)Install&BasicUse

HUDSON(一)Install&BasicUse

主页
https://hudson.dev.java.net/

下载文件
hudson.war

1.Installation:
to install Hudson on Tomcat,simply copy hudson.war to $TOMCAT_HOME/webapps
将文件移动到发布目录
mv hudson.war /usr/local/apache-tomcat-5.5.26/webapps/

$TOMCAT_HOME/bin/startup.sh &
启动TOMCAT,访问机器 http://www.sillycat.com:8080/hudson/

Securing Hudson on Tomcat
Tomcat by default stores the user database in an XML file called
$TOMCAT_HOME/conf/tomcat-users.xml. You can add the following lines to this file to
create an admin user.
<role rolename="admin" />
<user username="sillycat" password="xxxxxx" roles="admin" />

i18n
Some versions of Tomcat ( such as 5.0.28) uses iso-8859-1 to decode URLs.To fix this problem, add the following URIEncoding attribute to the connector definition in
$TOMCAT_HOME/conf/server.xml

<Connector port="8080" URIEncoding="UTF-8" />

2.Configration hudson
Manage Hudson-----Configure System

JDKs
JDK installations name=jdk1.5
                  JAVA_HOME=/usr/lib/jvm/java-1.5.0-sun

Maven
Maven installation name=maven2
                   MAVEN_HOME=/usr/share/maven2

E-mail Notification
SMTP server : mail.megaeyes.com
Default user email suffix:megaeyes.com
System Admin E-mail Address:luohua@megaeyes.com
Hudson URL:
Advanced...
User SMTP Authentication checked
User Name : luohua@megaeyes.com
password: xxxxx

3.Use hudson
New Job
enter a new job name: easySearch
Choose
Build a maven2 project
------------------------------------next
Source Code Management use
Subversion
Modules Repository URL http://www.sillycat.com/repos/easySearch

Build
Goals and options: clean install

------------------------------------Success

4.configration project

Quiet period:hudson定时构建工程的时间(秒)
project ----> Configure

Advanced Project Options   -------Advanced
checked Quiet period
Quiet period 3600 Number of seconds

你可能感兴趣的:(jvm,tomcat,maven,xml,subversion)