Changes for page Installing and Configuring Jenkins
Last modified by Bastian Triller on 2012/08/24 19:38
From version 46.1
edited by Pascal Robert
on 2012/01/30 14:50
on 2012/01/30 14:50
Change comment:
There is no comment for this version
To version 45.1
edited by Pascal Robert
on 2011/07/15 11:49
on 2011/07/15 11:49
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -2,14 +2,6 @@ 2 2 3 3 An introductory presentation on building WebObjects projects with Hudson (the predecessor to Jenkins) was given by Mike Schrag at WOWODC-West in 2009, and the video can be [[purchased from wocommunity.org>>http://www.wocommunity.org/apps/WebObjects/WOCommunity.woa/wa/recordings]]. 4 4 5 -=== Pre-requirements === 6 - 7 -Before you install Jenkins, you will need to install 8 - 9 -* a Java SDK (a JRE won't work because of Ant) 10 -* a Git client. Make sure that the 'git' command is in the regular PATH (in /usr/bin or /usr/sbin). If it's elsewhere, like /opt/local/bin/git or /usr/local/bin/git, make a symlink in /usr/bin (example: sudo ln --s /opt/local/bin/git /usr/bin/git).-- 11 -* a Subversion client if you are going to use Subversion 12 - 13 13 === Upgrading from Hudson === 14 14 15 15 Switching from Hudson to Jenkins is straight-forward since Hudson was the foundation that Jenkins was forked from. jenkins-ci.org has a [[wiki entry>>https://wiki.jenkins-ci.org/display/JENKINS/Upgrading+from+Hudson+to+Jenkins]] to help with the change. ... ... @@ -23,29 +23,23 @@ 23 23 1. Restart your computer 24 24 This is required because the current version of Jenkins does not create the its directory until it launches after you restart you computer. 25 25 1. Point your browser to: [[http://localhost:8080/]] 26 -1. [[Start setting up jobs>>WO:ConfiguringjobsinJenkins]]18 +1. Start setting up jobs (Instructions from WOWODC2011 Coming Soon) 27 27 28 28 === Stand-Alone CentOS/RedHat/Amazon Linux === 29 29 30 -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. 22 +1. Download the Jenkins Binary Installer from the [[Jenkins Website>>http://pkg.jenkins-ci.org/redhat/]]. 23 +You can also use Yum to install Jenkins, for easy upgrading and installation. Check the instructions on [[that page>>http://pkg.jenkins-ci.org/redhat/]]. 24 +1. If using the .rpm, install it with 25 +rpm -install jenkins-VERSION-NUMBER.noarch.rpm 26 +1. To start Jenkins: 27 +service jenkins on 28 +1. Point your browser to: http:~/~/yourserver:8080 29 +1. The Jenkins data directory, where the jobs and config are, is : /var/lib/jenkins 30 +The starting script is at: /etc/init.d/jenkins 31 +Jenkins (the .war) is installed at: /usr/lib/jenkins/ 32 +1. To upgrade Jenkins, do the same step as installation, but do -upgrade instead of -install: 33 +rpm -upgrade jenkins-VERSION-NUMBER.noarch.rpm 31 31 32 -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: 33 - 34 -{{code}} 35 - 36 -sudo cp /etc/pki/tls/certs/ca-bundle.crt /etc/pki/tls/certs/ca-bundle.crt.original 37 -sudo curl http://curl.haxx.se/ca/cacert.pem -o /etc/pki/tls/certs/ca-bundle.crt 38 - 39 -{{/code}} 40 - 41 -=== Stand-Alone Ubuntu/Debian === 42 - 43 -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. 44 - 45 -=== Post installation === 46 - 47 -After Jenkins is installed and running, go into Jenkins configuration and make sure that you install the "Multiple SCMs" and "Git plugin". If you are using another SCM like Mercurial or Perforce, install the plugins and the clients for your SCM. 48 - 49 49 === Using SSL === 50 50 51 51 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: ... ... @@ -168,15 +168,3 @@ 168 168 == Building WO Apps == 169 169 170 170 * Check out [[Installing and Configuring Jenkins Build Server^setupWorkspace.sh]] 171 - 172 -== Jenkins plugins == 173 - 174 -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. 175 - 176 -{{info}} 177 -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. 178 -{{/info}} 179 - 180 -== Building projects == 181 - 182 -See [[WO:Configuring jobs in Jenkins]]