Wiki source code of Installing and Using the Hudson build server
Version 83.1 by Johan Henselmans on 2009/06/10 10:22
Hide last authors
author | version | line-number | content |
---|---|---|---|
![]() |
78.1 | 1 | Hudson is a build server that takes the chore of the building and can do it automatically, based on all kinds of variables. |
![]() |
37.1 | 2 | |
![]() |
78.1 | 3 | The complete introduction has been show on wowodc-west in 2009. |
![]() |
64.1 | 4 | |
![]() |
80.1 | 5 | === Installing Hudson === |
![]() |
64.1 | 6 | |
![]() |
78.1 | 7 | To get Hudson running, the easiest way is to start running tomcat on a server. |
![]() |
64.1 | 8 | |
![]() |
82.1 | 9 | * Install Tomcat from [[http://www.macports.org]] with the command |
10 | |||
11 | {{color value="green"}} | ||
12 | |||
13 | ========================================== | ||
![]() |
37.1 | 14 | sudo /opt/local/bin/port install tomcat6 |
![]() |
82.1 | 15 | ==================================== |
![]() |
37.1 | 16 | |
![]() |
82.1 | 17 | {{/color}} |
18 | |||
![]() |
78.1 | 19 | * 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) |
![]() |
37.1 | 20 | |
![]() |
78.1 | 21 | something along the line of: |
![]() |
37.1 | 22 | |
![]() |
82.1 | 23 | {{color value="green"}} |
24 | |||
25 | ======================== | ||
![]() |
37.1 | 26 | <?xml version='1.0' encoding='utf-8'?> |
27 | <tomcat-users> | ||
28 | <role rolename="manager"/> | ||
29 | <role rolename="admin"/> | ||
30 | <user username="tomcat" password="tomcat" roles="admin,manager"/> | ||
31 | </tomcat-users> | ||
![]() |
82.1 | 32 | ======================== |
33 | {green} | ||
34 | |||
35 | |||
36 | {{/color}} | ||
37 | |||
![]() |
78.1 | 38 | (remember this is testing) |
![]() |
37.1 | 39 | |
![]() |
82.1 | 40 | {{color}} |
![]() |
37.1 | 41 | |
42 | |||
![]() |
82.1 | 43 | * Start tomcat |
44 | |||
45 | [color:green} | ||
46 | ======================== | ||
47 | sudo launchctl load -w /Library/LaunchDaemons/org.macports.tomcat6.plist | ||
48 | ======================== | ||
49 | |||
50 | {{/color}} | ||
51 | |||
![]() |
78.1 | 52 | * download Hudson from hudson.dev.java.net, take care that you use the contextual menu to download the link hudson war file |
![]() |
37.1 | 53 | |
![]() |
78.1 | 54 | * create a folder /opt/local/var/db/hudson (this will be the place where hudson will store it's stuff |
![]() |
37.1 | 55 | |
![]() |
78.1 | 56 | * change ownership of that folder with ownership //www:_www// |
![]() |
37.1 | 57 | |
![]() |
78.1 | 58 | * add to /opt/local/share/java/tomcat6/conf/setenv.local: |
![]() |
37.1 | 59 | |
![]() |
82.1 | 60 | {{color value="green"}} |
![]() |
37.1 | 61 | |
![]() |
82.1 | 62 | ======================== |
63 | export HUDSON_HOME=/opt/local/var/db/hudson | ||
64 | export JAVA_OPTS=-Djava.awt.headless=true | ||
65 | ======================== | ||
66 | |||
67 | {{/color}} | ||
68 | |||
![]() |
78.1 | 69 | * 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. |
![]() |
37.1 | 70 | |
![]() |
78.1 | 71 | Next |