Difference between revisions of "Jenkins/Install and Plugins"

From Ever changing code
Jump to navigation Jump to search
Line 9: Line 9:


= First run =
= First run =
Password preview
#Password preview <code>sudo vi /var/lib/jenkins/secrets/initialAdminPassword</code>
sudo vi /var/lib/jenkins/secrets/initialAdminPassword
#Url http://localhost:8080
Url http://localhost:8080
#Select plugins you wish to install using web based wizard
 
#Once all downloaded, create your Admin user
Install required plugins using web based wizard.
#Once completed you will see: "''Jenkins is ready! Your Jenkins setup is complete.''"

Revision as of 19:42, 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

First run

  1. Password preview sudo vi /var/lib/jenkins/secrets/initialAdminPassword
  2. Url http://localhost:8080
  3. Select plugins you wish to install using web based wizard
  4. Once all downloaded, create your Admin user
  5. Once completed you will see: "Jenkins is ready! Your Jenkins setup is complete."