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

From version 52.1
edited by David Avendasora
on 2011/07/07 14:12
Change comment: There is no comment for this version
To version 49.1
edited by Pascal Robert
on 2012/01/25 18:40
Change comment: There is no comment for this version

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.avendasora
1 +XWiki.probert
Content
... ... @@ -9,7 +9,7 @@
9 9  === Stand-Alone Mac OS X Setup ===
10 10  
11 11  1. Download the Jenkins Binary Installer from the [[Jenkins Website>>http://jenkins-ci.org/]].
12 -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##.
12 +The direct link to get the latest installer is: [[http://mirrors.jenkins-ci.org/osx/latest]]. This will download a standard OS X Installer Package named ##jenkins-n.nnn.pkg##.
13 13  1. Run the installer
14 14  [[image:JenkinsInstaller.png]]
15 15  1. Restart your computer
... ... @@ -17,6 +17,19 @@
17 17  1. Point your browser to: [[http://localhost:8080/]]
18 18  1. Start setting up jobs (Instructions from WOWODC2011 Coming Soon)
19 19  
20 +=== Stand-Alone CentOS/RedHat/Amazon Linux ===
21 +
22 +The easiest way to install Jenkins on a Fedora/RedHat/CentOS/Amazon Linux is by using [[Yum>>http://en.wikipedia.org/wiki/Yellow_dog_Updater,_Modified]]. The Jenkins project have a Yum repository and [[complete instructions>>https://wiki.jenkins-ci.org/display/JENKINS/Installing+Jenkins+on+RedHat+distributions]] on how to add the repository + install Jenkins the first time. You can also manually install Jenkins from a RPM available on jenkins-ci.org.
23 +
24 +Please note that on CentOS 5.x (I don't know for CentOS), the list of root certificates is old, and you will get error when trying to clone a Git repository coming from GitHub. To update the list of root certificates, do:
25 +
26 +{{code}}
27 +
28 +sudo cp /etc/pki/tls/certs/ca-bundle.crt /etc/pki/tls/certs/ca-bundle.crt.original
29 +sudo curl http://curl.haxx.se/ca/cacert.pem \-o /etc/pki/tls/certs/ca-bundle.crt
30 +
31 +{{/code}}
32 +
20 20  === Using SSL ===
21 21  
22 22  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:
... ... @@ -139,3 +139,11 @@
139 139  == Building WO Apps ==
140 140  
141 141  * Check out [[Installing and Configuring Jenkins Build Server^setupWorkspace.sh]]
155 +
156 +== Jenkins plugins ==
157 +
158 +After Jenkins is installed and started, you will need to install at the very minimum two plugins: [[Multiple SCMs>>https://wiki.jenkins-ci.org/display/JENKINS/Multiple+SCMs+Plugin]] and [[Git>>https://wiki.jenkins-ci.org/display/JENKINS/Git+Plugin]]. They are required if you need to build projects by using the WOJenkins templates. If your projects are under another SCM like Subversion or CVS, you also need to install Jenkins for it.
159 +
160 +== Building projects ==
161 +
162 +See [[WO:Configuring jobs in Jenkins]]