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

starting jenkins in ubuntu

#Starting Jenkins
sudo systemctl start jenkins

#Configure Jenkins to start at boot
sudo systemctl enable jenkins

#Checking status of jenkins
sudo systemctl status jenkins

#Will show below output if everything is working fine:
#Loaded: loaded (/lib/systemd/system/jenkins.service; enabled; vendor preset: enabled)
#Active: active (running) since Tue 2018-11-13 16:19:01 +03; 4min 57s ago


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 installation on ubuntu

jenkins installation
Comment

install jenkins ubuntu

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

PREVIOUS NEXT
Code Example
Shell :: how to install parcel globally 
Shell :: how to change account in git bash 
Shell :: upgrade pytorch version 
Shell :: vim tab 2 spaces 
Shell :: unable to pub upgrade flutter tool 
Shell :: docker pull image and rename it 
Shell :: how to uninstall ngrok 
Shell :: Another active Homebrew update process is already in progress 
Shell :: how to show remote origin in git 
Shell :: bash: make: command not found 
Shell :: view host entires mac terminal 
Shell :: blackeye github 
Shell :: rick roll terminal command 
Shell :: oh my zsh update 
Shell :: heroku select appp 
Shell :: code blocks install ubuntu 
Shell :: killing port using npm cli 
Shell :: wget ignore ssl cert error 
Shell :: crlf to lf in all files in vs code 
Shell :: powershell get all environment variables 
Shell :: apache2 ubuntu code exited 
Shell :: how to check services running on port 8080 in linux 
Shell :: docker post installation steps linux 
Shell :: install brew debian 
Shell :: weka ubuntu 
Shell :: how to convert ts to mp4 with ffmpeg 
Shell :: uninstall genymotion from ubuntu 
Shell :: hibernate ubuntu 
Shell :: how to install arduino ide on ubuntu 
Shell :: check open port linux 
ADD CONTENT
Topic
Content
Source link
Name
7+5 =