Last modified by Bastian Triller on 2012/08/24 19:38

From version 97.1
edited by David Avendasora
on 2009/06/18 13:29
Change comment: There is no comment for this version
To version 77.1
edited by Ramsey Gurley
on 2011/04/24 16:30
Change comment: There is no comment for this version

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.avendasora
1 +XWiki.ramsey
Content
... ... @@ -1,6 +1,6 @@
1 -Hudson is a build server that takes the chore of the building and can do it automatically, based on all kinds of variables.
1 +[[Hudson>>http://hudson-ci.org/]] is an "extensible continuous integration server". It monitors repeated executions of jobs, such as building software projects, and can be used to build WebObjects applications and frameworks. Hudson is an open source project, and can be used at no cost. An introductory presentation on building WebObjects projects with Hudson was given by Mike Schrag at WOWODC-West in 2009, and the video can be [[purchased from wocommunity.org>>http://www.wocommunity.org/apps/WebObjects/WOCommunity.woa/wa/recordings]].
2 2  
3 -The complete introduction has been show on wowodc-west in 2009.
3 +== Setting up Hudson ==
4 4  
5 5  There are a couple different ways to run Hudson. The easiest is to run it as a standalone application.
6 6  
... ... @@ -10,8 +10,8 @@
10 10  These instructions are based on David Avendasora's setup. You may have different preferences as to where to install Hudson at or where to set its home directory to.
11 11  {{/info}}
12 12  
13 -1. Create a /Developer/Hudson/Home directory
14 -1. Download Hudson From [[http://hudson.dev.java.net]]. Save the hudson.war file to /Developer/Hudson
13 +1. Create a ##/Developer/Hudson/Home## directory.
14 +1. [[Download Hudson>>http://hudson-ci.org/latest/hudson.war]], saving ##hudson.war## file to ##/Developer/Hudson##.
15 15  1. Launch Hudson with the following command in Terminal.app:
16 16  
17 17  {{code}}
... ... @@ -20,20 +20,92 @@
20 20  
21 21  {{/code}}
22 22  
23 -1. Point your browser to: http:~/~/localhost:8080/hudson
24 -1. Start setting up jobs!
23 +{{info}}
25 25  
26 -=== Servlet Container Installation ===
25 +Hudson uses a built-in servlet container in stand-alone mode. If you have Tomcat running on the computer already, you should use the {{\-}}{{{}{-}httpPort{-}}} and {{\-ajp13Port}} options to change which ports Hudson uses.
26 +{code}
27 +java -DHUDSON_HOME=/Developer/Hudson/Home -jar /Developer/Hudson/hudson.war -httpPort=9080 --ajp13Port=9009
28 +{code}
27 27  
28 -1. Install Tomcat from [[http://www.macports.org]] with the command
30 +{{/info}}
29 29  
32 +1. Point your browser to: [[http://localhost:8080/]] 
33 +1. Start setting up jobs
34 +
35 +=== Standalone Jenkins w/SSL ===
36 +
37 +Setting up SSL for Jenkins is surprisingly easy. I found basic instructions here at [[SSL Setup Options>>http://jenkins.361315.n4.nabble.com/SSL-Setup-Options-td954261.html]]. I'll repeat them here for posterity.
38 +
39 +1. Create a selfsigned test SSL certificate. 
40 +keytool genkey keyalg RSA alias selfsigned keystore keystore.jks -storepass ToPSecRet321 dname "cn=localhost"
41 +1. Launch Hudson. 
42 +
30 30  {{noformat}}
44 +java -jar hudson.war --httpPort=-1 --httpsPort=8080 --httpsKeyStore=keystore.jks --httpsKeyStorePassword=ToPSecRet321
45 +{{/noformat}}
31 31  
47 +1. Launch browser 
48 +Open "https:~/~/localhost:8080" in browser. You might get a browser warning, because the certificate is not signed by a known certificate authority. Communication is SSL-encrypted nevertheless.
49 +
50 +Those with sharp eyes will notice the port has changed from the original instructions. That was required on Mac OS X because of permissions. Also, it's worth noting that the keytool asks for a second password for the private key of the ssl certificate. I used the same password as the keystore password and everything works. I'm not sure if that makes a difference.
51 +
52 +=== Standalone Jenkins and launchd on Mac OS X ===
53 +
54 +In my case I created the jenkins user and JENKINS//HOME using dscl. ([[Using dscl to Create New Users and Groups>>http://mblog.lib.umich.edu/sites/archives/2008/04/using_dscl_to_c.html]]) To make jenkins launch when the machine boots up and relaunch if it dies, I created a launch daemon. Doing that requires a plist in the correct folder. Then either reboot, or launch the daemon with launchctl on the command line.//
55 +
56 +Make sure your permissions and user:group are set correctly on the plist (-rw-r{-}{-}r- root:wheel). In /Library/LaunchDaemons/org.jenkins-ci.jenkins.plist I placed:
57 +
58 +{{code value="xml"}}
59 +
60 +<?xml version="1.0" encoding="UTF-8"?>
61 +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
62 +<plist version="1.0">
63 +<dict>
64 + <key>UserName</key>
65 + <string>jenkins</string>
66 + <key>Label</key>
67 + <string>org.jenkins-ci.jenkins</string>
68 + <key>EnvironmentVariables</key>
69 + <dict>
70 + <key>JENKINS_HOME</key>
71 + <string>/usr/local/jenkins/.jenkins</string>
72 + </dict>
73 + <key>ProgramArguments</key>
74 + <array>
75 + <string>/usr/bin/java</string>
76 + <string>-jar</string>
77 + <string>/usr/local/jenkins/jenkins.war</string>
78 + <string>--httpPort=-1</string>
79 + <string>--httpsPort=8080</string>
80 + <string>--httpsKeyStore=/usr/local/jenkins/keystore.jks</string>
81 + <string>--httpsKeyStorePassword=Jenkins123</string>
82 + </array>
83 + <key>StandardOutPath</key>
84 + <string>/usr/local/jenkins/.jenkins/log/out.txt</string>
85 + <key>StandardErrorPath</key>
86 + <string>/usr/local/jenkins/.jenkins/log/err.txt</string>
87 + <key>Disabled</key>
88 + <false/>
89 + <key>KeepAlive</key>
90 + <true/>
91 + <key>RunAtLoad</key>
92 + <true/>
93 +</dict>
94 +</plist>
95 +
96 +{{/code}}
97 +
98 +=== Servlet Container Installation on Mac OS X (10.5, 10.6) ===
99 +
100 +1. Install Tomcat from [[http://www.macports.org]] with the command
101 +
102 +{{noformat}}
103 +
32 32  sudo /opt/local/bin/port install tomcat6
33 33  
34 34  {{/noformat}}
35 35  
36 -1. Create an administrative user in /opt/local/share/java/tomcat6/conf/tomcat-users.xml (20 mins to find out where the user should be and how not to restart tomcat). Something along the line of:
108 +1. Create an administrative user in ##/opt/local/share/java/tomcat6/conf/tomcat-users.xml##.
37 37  
38 38  {{code value="xml"}}
39 39  
... ... @@ -52,7 +52,7 @@
52 52  
53 53  {{/panel}}
54 54  
55 -1. Start tomcat
127 +1. Start Tomcat.
56 56  
57 57  {{noformat}}
58 58  
... ... @@ -60,10 +60,10 @@
60 60  
61 61  {{/noformat}}
62 62  
63 -1. download Hudson from [[http://hudson.dev.java.net]], take care that you use the contextual menu to download the link hudson war file
64 -1. create a folder /opt/local/var/db/hudson (this will be the place where hudson will store it's stuff
65 -1. change ownership of that folder with ownership //www:_www//
66 -1. add to /opt/local/share/java/tomcat6/conf/setenv.local:
135 +1. [[Download Hudson>>http://hudson-ci.org/latest/hudson.war]], saving ##hudson.war## somewhere for later.
136 +1. Create a folder for Hudson to work in: ##/opt/local/var/db/hudson##
137 +1. Change ownership of that folder: ##chown www:_www /opt/local/var/db/hudson##
138 +1. Add the following to ##/opt/local/share/java/tomcat6/conf/setenv.local##:
67 67  
68 68  {{noformat}}
69 69  
... ... @@ -72,10 +72,66 @@
72 72  
73 73  {{/noformat}}
74 74  
75 -1. Install Hudson in Tomcat: goto [[http://localhost:8080]], login with the user and password that you have created in the tomcat-users.xml, and upload hudson.war to the tomcat server.
76 -1. Goto [[http://localhost:8080/hudson]] and you can start configuring your Hudson build server
77 -
147 +1. Install Hudson in Tomcat: go to [[http://localhost:8080]], login with the user and password that you have created in ##tomcat-users.xml##, and upload ##hudson.war## to the Tomcat server.
148 +1. Goto [[http://localhost:8080/hudson]] and you can start configuring your Hudson build server.
78 78  
79 -=== Building WO Apps ===
150 +=== {{color value="#000000"}}{*}Servlet Container Installation on Mac OS X Server (10.6)*{{/color}} ===
80 80  
152 +1. Tomcat is by default installed on Mac OS X Server.
153 +1. Create an administrative user in&nbsp;##/Library/Tomcat/conf/tomcat-users.xml##.
154 +
155 +{{code value="xml"}}
156 +
157 +<?xml version='1.0' encoding='utf-8'?>
158 +<tomcat-users>
159 + <role rolename="manager"/>
160 + <role rolename="admin"/>
161 + <user username="tomcat" password="tomcat" roles="admin,manager"/>
162 +</tomcat-users> 
163 +
164 +{{/code}}
165 +
166 +{{panel bgColor="#F7D6C1"}}
167 +
168 +{color:#000000}Don't forget to change the username and password after you have finished checking out the build server and start using it in production.&nbsp;{color}
169 +
170 +{{/panel}}
171 +
172 +1. The way to start it depends on the version. The current way is to go to the Web Settings in Server Admin, Settings, General, check the Tomcat checkbox. Restart the WebServer.&nbsp;
173 +1. {{color value="#003366"}}[{{/color}}{{color value="#003366"}}Download Hudson{{/color}}http:~/~/hudson-ci.org/latest/hudson.war, saving&nbsp;##hudson.war##&nbsp;somewhere for later.
174 +1. Create a folder for Hudson to work in:&nbsp;##/Library/hudson##
175 +1. Change ownership of that folder:&nbsp;##chown appserver:sys /Library/Hudson##
176 +1. Add the following to&nbsp;##/Library/Tomcat/bin/setenv.sh##:
177 +
178 +{{noformat}}
179 +
180 +export HUDSON_HOME=/Library/Hudson
181 +export JAVA_OPTS=-Djava.awt.headless=true
182 +
183 +{{/noformat}}
184 +
185 +1. Make sure that you are using UTF8 in the Connector, by adding
186 +
187 +{{noformat}}
188 +
189 +URIEncoding="UTF-8"
190 +
191 +{{/noformat}}
192 +
193 +to the Connector in /Library/tomcat/conf/server.xml in such a way:
194 +
195 +{{noformat}}
196 +
197 + <Connector port="8080" protocol="HTTP/1.1"
198 + connectionTimeout="20000"
199 + redirectPort="8443" URIEncoding="UTF-8"/>
200 +
201 +{{/noformat}}
202 +
203 +1. Install Hudson in Tomcat: go to [[http://localhost:8080]], login with the user and password that you have created in tomcat-users.xml, and upload hudson.war to the Tomcat server.
204 +
205 +1. Goto [[http://localhost:8080/hudson]]&nbsp;and you can start configuring your Hudson build server.
206 +
207 +== Building WO Apps ==
208 +
81 81  * Check out [[^setupWorkspace.sh]]