Horje
install jenkins Code Example
install jenkins on ubuntu
## Install java
sudo apt update && sudo apt install openjdk-8-jdk -y

## Install Jenkins
wget -q -O - https://pkg.jenkins.io/debian-stable/jenkins.io.key | sudo apt-key add -

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

sudo apt-get update && sudo apt-get install jenkins -y
Jenkins Install Linux
curl -fsSL https://pkg.jenkins.io/debian-stable/jenkins.io.key | sudo tee \
  /usr/share/keyrings/jenkins-keyring.asc > /dev/null
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
sudo apt-get update
sudo apt-get install jenkins
jenkins download
wget -q -O - https://pkg.jenkins.io/debian/jenkins.io.key | sudo apt-key add -
install jenkins
[ec2-user ~]$ sudo yum install jenkins java-1.8.0-openjdk-devel -y




Shell

Related
gh config ssh protocol Code Example gh config ssh protocol Code Example
count file linux Code Example count file linux Code Example
git merge with message Code Example git merge with message Code Example
install hnswlib Code Example install hnswlib Code Example
-v /var/run/docker.sock jenkins/jenkins Code Example -v /var/run/docker.sock jenkins/jenkins Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9