Changes for page Installing and Configuring Jenkins
Last modified by Bastian Triller on 2012/08/24 19:38
From version 38.1
edited by Pascal Robert
on 2012/01/25 09:25
on 2012/01/25 09:25
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
-
... ... @@ -19,22 +19,17 @@ 19 19 20 20 === Stand-Alone CentOS/RedHat/Amazon Linux === 21 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. 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 - YoucanalsomanuallyinstallJenkinsfroma RPM. To do so: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 -1. Download the Jenkins Binary Installer from the [[Jenkins Website>>http://pkg.jenkins-ci.org/redhat/]]. 27 -1. If using the .rpm, install it with 28 -rpm -install jenkins-VERSION-NUMBER.noarch.rpm 29 -1. To start Jenkins: 30 -service jenkins on 31 -1. Point your browser to: [[http://yourserver:8080]] 32 -1. The Jenkins data directory, where the jobs and config are, is : /var/lib/jenkins 33 -The starting script is at: /etc/init.d/jenkins 34 -Jenkins (the .war) is installed at: /usr/lib/jenkins/ 35 -1. To upgrade Jenkins, do the same step as installation, but do -upgrade instead of -install: 36 -rpm -upgrade jenkins-VERSION-NUMBER.noarch.rpm 26 +{{code}} 37 37 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 + 38 38 === Using SSL === 39 39 40 40 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: