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 :: electron setup cmd 
Shell :: search a word in a text using grep in Linux 
Shell :: convert crt to cer with commnd 
Shell :: yum install gcc 
Shell :: ansible inventory root password 
Shell :: install jupyter 
Shell :: 504 gateway time-out nginx/1.18.0 (ubuntu) 
Shell :: Save changes in a new branch git 
Shell :: debian buster enable rc.local 
Shell :: git diff between branches file 
Shell :: handle git diverged 
Shell :: find file modified in last minutes 
Shell :: how to backup db mysql from cli 
Shell :: run existing image docker 
Shell :: connect to heroku cli 
Shell :: shell xargs 
Shell :: ubuntu activate network interface on boot 
Shell :: static ip wsl2 
Shell :: how to install zsh using brew 
Shell :: awk field separator multiple characters 
Shell :: ubuntu set vi as default editor 
Shell :: install rdp ubuntu 
Shell :: how to install wsl 2 
Shell :: uninstall 
Shell :: where to store env file in firebase functions 
Shell :: github setup local 
Shell :: cat first line 
Shell :: linux yaml validator command line 
Shell :: bash for 
Shell :: terraform apply target 
ADD CONTENT
Topic
Content
Source link
Name
5+9 =