Thursday, 11 February 2016

thumbnail

How-to-install-and-configure-Jenkins-on-Ubuntu-14.04

Introduction

Jenkins is an open source continuous integration tool written in Java. The project was forked from Hudson after a dispute with Oracle. Jenkins provides continuous integration service for software development. It is a server based system running is a servlet container such as Apache Tomcat. It supports SCM tools including AccuRev, CVS, Subversion, Git, Mercurial, Preforce, Clearcase and RTC, and can execute Apache Ant and Apache Maven based projects as welll as arbitrary shell scripts and Windows batch commands. The primary developer of Jenkins is kohsuke kawaguchi, and it is release under the MIT License.


In this tutorial we are using Ubuntu-14.04.3 as Jenkins server.

1. First of all we will have to install openjdk-7-jdk :-

sudo apt-get install openjdk-7-jdk openjdk-7-jre wget -y

2. Then we will add the repository of Jenkins to the server :-

wget -q -O - https://jenkins-ci.org/debian/jenkins-ci.org.key | sudo apt-key add -
sudo sh -c 'echo deb http://pkg.jenkins-ci.org/debian binary/ > /etc/apt/sources.list.d/jenkins.list'

3. Then update you system and install Jenkins :-

sudo apt-get update
sudo apt-get install jenkins -y

4. Now open the browser and lets test :-

http://192.168.15.98:8080   ====> Please change as per your IP



That's it
Now you can enjoy using Jenkins 
Please do Comments, Likes and Share.

Related Posts :

Subscribe by Email

Follow Updates Articles from This Blog via Email

No Comments