How to Install Jenkins On Ubuntu 22 04

1 year ago
4

Automation is a need of modern times. Especially in the software industry, there is a massive requirement for Automations. Jenkins is one such platform that helps you with the Automation of your different development phases.

This video will show you how you can install Jenkins on Ubuntu.

Enjoy the Video.

⏰Timestamps⏰

00:00 Intro
00:06 Update Your System
00:21 Install Java JDK
00:47 Add a Key
01:05 Add Jenkins
01:14 Install Jenkins
01:47 Install GIT
02:10 Access the Jenkins in Browser
02:30 Access the Admin password
03:19 Install Plugins
03:36 Create Admin User
04:26 Jenkins Dashboard
04:33 Outro

sudo apt-get update

Install Java
sudo apt-get install openjdk-8-jdk

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

Add Jenkins
sudo sh -c 'echo deb https://pkg.jenkins.io/debian-stable binary/ /etc/apt/sources.list.d/jenkins.list'

sudo apt-get update

Install Jenkins
sudo apt-get install jenkins

Install GIT
sudo apt install git

Loading comments...