Difference between revisions of "Jenkins/Install and Plugins"

From Ever changing code
Jump to navigation Jump to search
(Created page with "= Install Jenkins = Install Jenkins on Ubuntu from [https://pkg.jenkins.io/debian-stable/ repository] sudo wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat...")
 
Line 1: Line 1:
= Install Jenkins =
= Install Jenkins =
Install Jenkins on Ubuntu from [https://pkg.jenkins.io/debian-stable/ repository]
Install Jenkins on Ubuntu from [https://pkg.jenkins.io/debian-stable/ repository]
  sudo wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat-stable/jenkins.repo
  wget -q -O - https://pkg.jenkins.io/debian-stable/jenkins.io.key | sudo apt-key add -
Add repo to <tt>sources.list</tt>
Add repo to <tt>sources.list</tt>
  sudo sh -c 'echo deb <nowiki>http://pkg.jenkins.io/debian-stable binary/</nowiki> > /etc/apt/sources.list.d/jenkins.list'
  sudo sh -c 'echo deb <nowiki>http://pkg.jenkins.io/debian-stable binary/</nowiki> > /etc/apt/sources.list.d/jenkins.list'
  sudo apt-get update && sudo apt-get install jenkins
  sudo apt-get update && sudo apt-get install jenkins

Revision as of 19:19, 1 May 2017

Install Jenkins

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