Changes for page Installing and Configuring Jenkins
Last modified by Bastian Triller on 2012/08/24 19:38
From version 82.1
edited by Johan Henselmans
on 2009/06/10 10:22
on 2009/06/10 10:22
Change comment:
There is no comment for this version
To version 84.1
edited by Johan Henselmans
on 2009/06/10 10:34
on 2009/06/10 10:34
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -8,21 +8,18 @@ 8 8 9 9 * Install Tomcat from [[http://www.macports.org]] with the command 10 10 11 -{{ colorvalue="green"}}11 +{{noformat}} 12 12 13 -========================================== 14 14 sudo /opt/local/bin/port install tomcat6 15 -==================================== 16 16 17 -{{/ color}}15 +{{/noformat}} 18 18 19 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) 20 20 21 21 something along the line of: 22 22 23 -{{co lorvalue="green"}}21 +{{code value="xml"}} 24 24 25 -======================== 26 26 <?xml version='1.0' encoding='utf-8'?> 27 27 <tomcat-users> 28 28 <role rolename="manager"/> ... ... @@ -29,27 +29,24 @@ 29 29 <role rolename="admin"/> 30 30 <user username="tomcat" password="tomcat" roles="admin,manager"/> 31 31 </tomcat-users> 32 -======================== 33 -{green} 34 34 30 +{{/code}} 35 35 36 -{{ /color}}32 +{{panel bgColor="#F7D6C1"}} 37 37 38 - (remember this istesting)34 +Don't forget to change the username and password after you have finished checking out the build server and start using it in production. 39 39 40 -{{ color}}36 +{{/panel}} 41 41 42 - 43 43 * Start tomcat 44 44 45 - [color:green}46 - ========================40 +{{noformat}} 41 + 47 47 sudo launchctl load -w /Library/LaunchDaemons/org.macports.tomcat6.plist 48 -======================== 49 49 50 -{{/ color}}44 +{{/noformat}} 51 51 52 -* download Hudson from hudson.dev.java.net, take care that you use the contextual menu to download the link hudson war file 46 +* download Hudson from [[http://hudson.dev.java.net]], take care that you use the contextual menu to download the link hudson war file 53 53 54 54 * create a folder /opt/local/var/db/hudson (this will be the place where hudson will store it's stuff 55 55 ... ... @@ -57,15 +57,13 @@ 57 57 58 58 * add to /opt/local/share/java/tomcat6/conf/setenv.local: 59 59 60 -{{ colorvalue="green"}}54 +{{noformat}} 61 61 62 -======================== 63 63 export HUDSON_HOME=/opt/local/var/db/hudson 64 64 export JAVA_OPTS=-Djava.awt.headless=true 65 -======================== 66 66 67 -{{/ color}}59 +{{/noformat}} 68 68 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. 61 +* 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. 70 70 71 -Next 63 +Next goto [[http://localhost:8080/hudson]] and you can start configuring your Hudson build server