Skip to content

Instantly share code, notes, and snippets.

@dwdraju
Created January 15, 2019 11:01
Show Gist options
  • Save dwdraju/3601f2c56ef701d0bb1b60f2d80a840a to your computer and use it in GitHub Desktop.
Save dwdraju/3601f2c56ef701d0bb1b60f2d80a840a to your computer and use it in GitHub Desktop.
Install jenkins on ubuntu:18.04
wget -q -O - https://pkg.jenkins.io/debian/jenkins.io.key | sudo apt-key add -
sudo sh -c 'echo deb http://pkg.jenkins.io/debian-stable binary/ > /etc/apt/sources.list.d/jenkins.list'
sudo apt install openjdk-8-jdk -y
sudo apt update
sudo apt install jenkins -y
sudo systemctl start jenkins
sudo systemctl status jenkins
sudo cat /var/lib/jenkins/secrets/initialAdminPassword
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment