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

From version 80.1
edited by Johan Henselmans
on 2009/06/10 10:20
Change comment: There is no comment for this version
To version 58.1
edited by David Avendasora
on 2011/07/07 13:31
Change comment: There is no comment for this version

Summary

Details

Page properties
Title
... ... @@ -1,1 +1,1 @@
1 -Installing and Using the Hudson build server
1 +Installing and Configuring Jenkins Build Server
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.johanhenselmans
1 +XWiki.avendasora
Content
... ... @@ -1,21 +1,53 @@
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 +[[Jenkins>>http://jenkins-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 (the predecessor to Jenkins) 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 +=== Upgrading from Hudson ===
4 4  
5 -=== Installing Hudson ===
5 +Switching from Hudson to Jenkins is straight-forward since Hudson was the foundation that Jenkins was forked from. jenkins-ci.org has a [[wiki entry>>https://wiki.jenkins-ci.org/display/JENKINS/Upgrading+from+Hudson+to+Jenkins]] to help with the change.
6 6  
7 -To get Hudson running, the easiest way is to start running tomcat on a server.
7 +=== Stand-Alone Mac OS X Setup ===
8 8  
9 -* Install Tomcat from [[http:~~/~~/www.macports.org>>macports]] with the command
10 -~==========================================
9 +1. Download the Jenkins Binary Installer from the [[Jenkins Website>>http://jenkins-ci.org/]].
10 +The direct link to get he latest installer is: [[http://mirrors.jenkins-ci.org/osx/latest]]. This will download a standard OS X Installer Package named ##jenkins-n.nnn.pkg##.
11 +1. Run the installer
12 +[[image:JenkinsInstaller.png]]
13 +1. Restart your computer
14 +This is required because the current version of Jenkins does not create the its directory until it launches after you restart you computer.
15 +1. Point your browser to: [[http://localhost:8080/]]
16 +1. Start setting up jobs (Instructions from WOWODC2011 Coming Soon)
17 +
18 +=== Using SSL ===
19 +
20 +Setting up SSL for Jenkins is surprisingly easy. The following is originally from the [[SSL Setup Options>>http://jenkins.361315.n4.nabble.com/SSL-Setup-Options-td954261.html]] page on nabble.com:
21 +
22 +1. Create a selfsigned test SSL certificate. 
23 +keytool genkey keyalg RSA alias selfsigned keystore keystore.jks -storepass ToPSecRet321 dname "cn=localhost"
24 +1. Launch Hudson. 
25 +
26 +{{noformat}}
27 +java -jar hudson.war --httpPort=-1 --httpsPort=8080 --httpsKeyStore=keystore.jks --httpsKeyStorePassword=ToPSecRet321
28 +{{/noformat}}
29 +
30 +1. Launch browser 
31 +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.
32 +
33 +{{note title="Please Note"}}
34 +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. We are using the same password as the keystore password and everything works. It is unclear if that makes a difference.
35 +{{/note}}
36 +
37 +=== Servlet Container Installation on Mac OS X (10.5, 10.6) ===
38 +
39 +1. Install Tomcat from [[http://www.macports.org]] with the command
40 +
41 +{{noformat}}
42 +
11 11  sudo /opt/local/bin/port install tomcat6
12 -~====================================
13 13  
14 -* 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)
45 +{{/noformat}}
15 15  
16 -something along the line of:
47 +1. Create an administrative user in ##/opt/local/share/java/tomcat6/conf/tomcat-users.xml##.
17 17  
18 -~========================
49 +{{code value="xml"}}
50 +
19 19  <?xml version='1.0' encoding='utf-8'?>
20 20  <tomcat-users>
21 21   <role rolename="manager"/>
... ... @@ -22,28 +22,95 @@
22 22   <role rolename="admin"/>
23 23   <user username="tomcat" password="tomcat" roles="admin,manager"/>
24 24  </tomcat-users>
25 -~========================
26 -(remember this is testing)
27 27  
28 -* Start tomcat, (1 min)
58 +{{/code}}
29 29  
30 -~========================
31 -sudo launchctl load --w /Library/LaunchDaemons/org.macports.tomcat6.plist
32 -~========================--
60 +{{panel bgColor="#F7D6C1"}}
33 33  
34 -* download Hudson from hudson.dev.java.net, take care that you use the contextual menu to download the link hudson war file
62 +Don't forget to change the username and password after you have finished checking out the build server and start using it in production.
35 35  
36 -* create a folder /opt/local/var/db/hudson (this will be the place where hudson will store it's stuff
64 +{{/panel}}
37 37  
38 -* change ownership of that folder with ownership //www:_www//
66 +1. Start Tomcat.
39 39  
40 -* add to /opt/local/share/java/tomcat6/conf/setenv.local:
68 +{{noformat}}
41 41  
42 -~========================
43 -export HUDSON//HOME=/opt/local/var/db/hudson
44 -export JAVA//OPTS=-Djava.awt.headless=true
45 -~========================
70 +sudo launchctl load -w /Library/LaunchDaemons/org.macports.tomcat6.plist
46 46  
47 -* install Hudson in Tomcat: goto 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.
72 +{{/noformat}}
48 48  
49 -Next
74 +1. [[Download Hudson>>http://hudson-ci.org/latest/hudson.war]], saving ##hudson.war## somewhere for later.
75 +1. Create a folder for Hudson to work in: ##/opt/local/var/db/hudson##
76 +1. Change ownership of that folder: ##chown www:_www /opt/local/var/db/hudson##
77 +1. Add the following to ##/opt/local/share/java/tomcat6/conf/setenv.local##:
78 +
79 +{{noformat}}
80 +
81 +export HUDSON_HOME=/opt/local/var/db/hudson
82 +export JAVA_OPTS=-Djava.awt.headless=true
83 +
84 +{{/noformat}}
85 +
86 +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.
87 +1. Goto [[http://localhost:8080/hudson]] and you can start configuring your Hudson build server.
88 +
89 +=== {{color value="#000000"}}{*}Servlet Container Installation on Mac OS X Server (10.6)*{{/color}} ===
90 +
91 +1. Tomcat is by default installed on Mac OS X Server.
92 +1. Create an administrative user in&nbsp;##/Library/Tomcat/conf/tomcat-users.xml##.
93 +
94 +{{code value="xml"}}
95 +
96 +<?xml version='1.0' encoding='utf-8'?>
97 +<tomcat-users>
98 + <role rolename="manager"/>
99 + <role rolename="admin"/>
100 + <user username="tomcat" password="tomcat" roles="admin,manager"/>
101 +</tomcat-users> 
102 +
103 +{{/code}}
104 +
105 +{{panel bgColor="#F7D6C1"}}
106 +
107 +{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}
108 +
109 +{{/panel}}
110 +
111 +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;
112 +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.
113 +1. Create a folder for Hudson to work in:&nbsp;##/Library/hudson##
114 +1. Change ownership of that folder:&nbsp;##chown appserver:sys /Library/Hudson##
115 +1. Add the following to&nbsp;##/Library/Tomcat/bin/setenv.sh##:
116 +
117 +{{noformat}}
118 +
119 +export HUDSON_HOME=/Library/Hudson
120 +export JAVA_OPTS=-Djava.awt.headless=true
121 +
122 +{{/noformat}}
123 +
124 +1. Make sure that you are using UTF8 in the Connector, by adding
125 +
126 +{{noformat}}
127 +
128 +URIEncoding="UTF-8"
129 +
130 +{{/noformat}}
131 +
132 +to the Connector in /Library/tomcat/conf/server.xml in such a way:
133 +
134 +{{noformat}}
135 +
136 + <Connector port="8080" protocol="HTTP/1.1"
137 + connectionTimeout="20000"
138 + redirectPort="8443" URIEncoding="UTF-8"/>
139 +
140 +{{/noformat}}
141 +
142 +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.
143 +
144 +1. Goto [[http://localhost:8080/hudson]]&nbsp;and you can start configuring your Hudson build server.
145 +
146 +== Building WO Apps ==
147 +
148 +* Check out [[Installing and Configuring Jenkins Build Server^setupWorkspace.sh]]