Difference between revisions of "Jenkins/Install and Plugins"

From Ever changing code
Jump to navigation Jump to search
Line 1: Line 1:
= Install Jenkins =
= Install Jenkins =
Pre-requisites: Java
Install Jenkins on Ubuntu from [https://pkg.jenkins.io/debian-stable/ repository]
Install Jenkins on Ubuntu from [https://pkg.jenkins.io/debian-stable/ repository]
  wget -q -O - https://pkg.jenkins.io/debian-stable/jenkins.io.key | sudo apt-key add -
  wget -q -O - https://pkg.jenkins.io/debian-stable/jenkins.io.key | sudo apt-key add -

Revision as of 19:21, 1 May 2017

Install Jenkins

Pre-requisites: Java

Install Jenkins on Ubuntu from repository

wget -q -O - https://pkg.jenkins.io/debian-stable/jenkins.io.key | sudo apt-key add -

Add repo to sources.list

sudo sh -c 'echo deb http://pkg.jenkins.io/debian-stable binary/ > /etc/apt/sources.list.d/jenkins.list'
sudo apt-get update && sudo apt-get install jenkins