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

jenkins installation on ubuntu

jenkins installation
Comment

install jenkins ubuntu

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

PREVIOUS NEXT
Code Example
Shell :: pull specific commit 
Shell :: aws cli ec2 list security groups 
Shell :: docker delete network 
Shell :: remove all files inside directory linux 
Shell :: archive tar 
Shell :: npm install yarn 
Shell :: activate conda environment in bash script 
Shell :: count number of lines of code in git repo 
Shell :: express generator 
Shell :: copy folders linux 
Shell :: view git settings 
Shell :: windows docker update clock 
Shell :: where is global config file for git 
Shell :: git checkout to previous commit 
Shell :: zip files in folder linux 
Shell :: install bpytop 
Shell :: git change remote 
Shell :: diskpart assign letter 
Shell :: github actions sequential jobs 
Shell :: delete service in windows using command prompt 
Shell :: run cmd elevated command line 
Shell :: install plasma on ubuntu 
Shell :: HOW TLONG FOR VS TO INSTALL?!?!? 
Shell :: terminal matrix effect 
Shell :: git revert last commit keep changes 
Shell :: linux linebreaks script bash 
Shell :: jekyll run 
Shell :: get your ip address from terminal 
Shell :: git discard changes to one file 
Shell :: trim video linux 
ADD CONTENT
Topic
Content
Source link
Name
5+3 =