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 gitlab on mac os 
Shell :: move one foile/folder to another ubuntu 
Shell :: delete all folders except one linux 
Shell :: kill port 8080 windows cmd command 
Shell :: shopify cli 
Shell :: git stash specific files 
Shell :: docker compose install 
Shell :: install thefuck for ubuntu 
Shell :: github merge conflict 
Shell :: customize ubuntu terminal in windows 
Shell :: linux shell system commands 
Shell :: installing latest mediapipe version 
Shell :: vscodium download ubuntu 
Shell :: greeper contributor coin 
Shell :: add new file to context menu win 10 11 
Shell :: btfs paket ubunt 
Shell :: create enumerated folders termina 
Shell :: manueldeveloper github 
Shell :: getssl 
Php :: tinker lost color 
Php :: laravel query not null 
Php :: WordPress asking for FTP credentials on localhost 
Php :: fluid inline if 
Php :: how to migrate single table in laravel 
Php :: wordpress error log 
Php :: php array unique array to string conversion 
Php :: get page title wordpress 
Php :: check if string is number or not php 
Php :: carbon start of week minus one day 
Php :: php string to int 
ADD CONTENT
Topic
Content
Source link
Name
2+5 =