Jenkins isn’t part of the repositories for Ubuntu 19.10 but can be easily installed after adding it. Steps below:
Download and add the key
1
| wget -q -O - https://pkg.jenkins-ci.org/debian-stable/jenkins-ci.org.key | sudo apt-key add -
|
Add the repo to the sources file
1
| echo deb https://pkg.jenkins-ci.org/debian-stable binary/ | sudo tee /etc/apt/sources.list.d/jenkins.list
|
Update
Install Java
1
| sudo apt install openjdk-8-jdk
|
Install Jenkins
1
| sudo apt install jenkins
|
Start the Jenkins service
1
| sudo systemctl start jenkins
|
Access the Jenkins installation via a browser at: https://:8080
Admin password
Access the admin user password as per the below
1
| cat /var/lib/jenkins/secrets/initialAdminPassword
|