Changes for page Installing and Configuring Jenkins
Last modified by Bastian Triller on 2012/08/24 19:38
From version 43.1
edited by Pascal Robert
on 2012/01/25 20:04
on 2012/01/25 20:04
Change comment:
There is no comment for this version
To version 41.1
edited by Pascal Robert
on 2012/01/25 18:41
on 2012/01/25 18:41
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -21,19 +21,15 @@ 21 21 22 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 23 24 -Please note that on CentOS 5.x (I don't know for CentOS 6), 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: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 25 26 26 {{code}} 27 27 28 -sudo cp /etc/pki/tls/certs/ca-bundle.crt 29 -sudo curl http://curl.haxx.se/ca/cacert.pem -o /etc/pki/tls/certs/ca-bundle.crt 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 30 31 31 {{/code}} 32 32 33 -=== Stand-Alone Ubuntu/Debian === 34 - 35 -Follow [[the following instructions>>http://pkg.jenkins-ci.org/debian/]] to get Jenkins running on a Ubuntu or Debian system. If you didn't install a Sun JVM before installing Jenkins from their repository, it will install OpenJDK 1.6. [[Check the Ubuntu documentation>>https://help.ubuntu.com/community/Java]] for details on how to install a JDK on Ubuntu. 36 - 37 37 === Using SSL === 38 38 39 39 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: ... ... @@ -161,10 +161,6 @@ 161 161 162 162 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. 163 163 164 -{{info}} 165 -Don't forget to set *Global Config user.name Value* and *Global Config user.email Value* in the Jenkins settings, or else doing a Git clone will return an error. 166 -{{/info}} 167 - 168 168 == Building projects == 169 169 170 170 See [[WO:Configuring jobs in Jenkins]]