Akash-Softw / My-Study-and-Research

0 stars 0 forks source link

Jenkins server install on ubuntu 22 #3

Open Akash-Softw opened 1 year ago

Akash-Softw commented 1 year ago

Process and Details:

Link Of Jenkins:

https://www.jenkins.io/

Akash-Softw commented 1 year ago

Step 1:

key add for auto installation and upgrade:

curl -fsSL https://pkg.jenkins.io/debian-stable/jenkins.io-2023.key | sudo tee \
    /usr/share/keyrings/jenkins-keyring.asc > /dev/null

Step 2:

Add Repo:

echo deb [signed-by=/usr/share/keyrings/jenkins-keyring.asc] \
    https://pkg.jenkins.io/debian-stable binary/ | sudo tee \
    /etc/apt/sources.list.d/jenkins.list > /dev/null

Step 3:

Install java:

 sudo apt-get install fontconfig openjdk-11-jre

Step 4:

sudo apt-get install jenkins