Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

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

PREVIOUS NEXT
Code Example
Shell :: git delete branches not on remote 
Shell :: cli50 
Shell :: create a new repository on the command line 
Shell :: shallow clone specific branch 
Shell :: remove yum package with its dependencies 
Shell :: how to find the number of files in a directory linux 
Shell :: terminal rename folder 
Shell :: flutter live reload chrome 
Shell :: remote: ! You are trying to install ruby-2.7.0 on heroku-20. 
Shell :: git clone 
Shell :: free dock for linux 
Shell :: how to check ssh agent is running in git bash 
Shell :: how to prevent ubuntu sleeping when closing laptop 
Shell :: git merge cherry pick 
Shell :: how to check linux is ubuntu or centos 
Shell :: download file on linus ssh 
Shell :: uninstall vlc from terminal 
Shell :: install raspap 
Shell :: wget - 
Shell :: how to make ngrok not expired 
Shell :: how to clone repo and change name 
Shell :: how to undo a bunch of commit sent that was pushed 
Shell :: npm install react-navigation-stack 
Shell :: What commands would you use to force an overwrite of your local files with the master branch? 
Shell :: $(cat <<EOF 
Shell :: git stash to checkout master 
Shell :: bash comment section to a file 
Shell :: pull branch from github 
Shell :: git merge conflict resolve 
Shell :: how to scroll up in linux terminal 
ADD CONTENT
Topic
Content
Source link
Name
6+8 =