Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

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
Comment

install jenkins in linux

sudo wget -O /etc/yum.repos.d/jenkins.repo 
    https://pkg.jenkins.io/redhat-stable/jenkins.repo
sudo rpm --import https://pkg.jenkins.io/redhat-stable/jenkins.io.key
sudo yum upgrade
# Add required dependencies for the jenkins package
sudo yum install java-11-openjdk
sudo yum install jenkins
sudo systemctl daemon-reload
Comment

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
Comment

install jenkins

[ec2-user ~]$ sudo yum install jenkins java-1.8.0-openjdk-devel -y
Comment

install jenkins ubuntu

root@ubuntu-14:~# apt-get install nginx
Comment

PREVIOUS NEXT
Code Example
Shell :: conda install keyboard 
Shell :: lp list printers 
Shell :: clean journal 
Shell :: discord linux 
Shell :: linux mount ntfs as read write 
Shell :: how to activate virtual environment in ubuntu 20.04 
Shell :: how to uninstall git 
Shell :: how to read input in bash 
Shell :: terminal git add ssh key 
Shell :: list user groups linux 
Shell :: uninstall all nuget packages 
Shell :: windows terminal open as admin 
Shell :: brew install docker 
Shell :: kubernetes delete all from namespace 
Shell :: change owner of directory mac terminal 
Shell :: adding in ssh agent 
Shell :: run latex from command line 
Shell :: set up ssh windows 10 
Shell :: ubuntu add public key to server 
Shell :: git merge main into branch 
Shell :: install postman desktop ubuntu 
Shell :: cuda install in ubuntu 
Shell :: git commit and add in one command 
Shell :: powershell git 
Shell :: video player ubuntu 
Shell :: ls bs date 
Shell :: git command line discard changes 
Shell :: remobve git remote 
Shell :: add laravel installer to path 
Shell :: how to start cron job 
ADD CONTENT
Topic
Content
Source link
Name
2+7 =