Detailed instructions for installing Jenkins on Ubuntu 16.04

Detailed instructions for installing Jenkins on Ubuntu 16.04

1. Prerequisites

JDK has been installed

echo $PATH

Create a soft link and configure it according to your jdk installation path

ln -s /java/jdk1.8.0_231/bin/java /usr/bin/java

The machine is connected to the Internet

Uninstall Jenkins (skip if already installed)

sudo apt-get remove jenkins
sudo apt-get purge jenkins
sudo apt-get purge --auto-remove jenkins

2. Complete the installation through the following command

wget -q -O - https://pkg.jenkins.io/debian/jenkins-ci.org.key | sudo apt-key add -
sudo sh -c 'echo deb http://pkg.jenkins.io/debian-stable binary/ > /etc/apt/sources.list.d/jenkins.list'
sudo apt-get update
sudo apt-get install jenkins 

3. Start jenkis

sudo /etc/init.d/jenkins [start|restart|stop] 

4. View the installation password

cat /var/lib/jenkins/secrets/initialAdminPassword 

5. Open the browser http://192.168.215.50:8080 (If tomcat is installed on the server, please change the port of jenkins)

$ sudo vi /etc/default/jenkins
#Modify the following content HTTP_PORT=8085
#Restart the jenkins service $ sudo /etc/init.d/jenkins restart 

Enter the password you just queried

6. Select the recommended plugin to install

Wait patiently for the installation

7. Create the first management account

Summarize

The above is a detailed graphic explanation of how to install Jenkins on Ubuntu 16.04. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • Docker installation of Jenkins full process and stepping on the guide
  • Getting Started Tutorial on Jenkins Installation and Plugin Management Configuration
  • Jenkins environment setup download and installation process
  • Install Jenkins with Docker and solve the problem of initial plugin installation failure
  • Linux installation steps for Jenkins and various problem solving (page access initialization password)
  • How to install Jenkins on CentOS 8
  • Analysis and solution of time zone problem in Jenkins installation

<<:  Vue+express+Socket realizes chat function

>>:  How to solve the problem of case insensitivity in MySQL queries

Recommend

Zen coding resource update function enhancement

Official website: http://code.google.com/p/zen-cod...

Linux virtual memory settings tutorial and practice

What is Virtual Memory? First, I will directly qu...

MySQL cross-table query and cross-table update

Friends who have some basic knowledge of SQL must...

SQL implements LeetCode (180. Continuous numbers)

[LeetCode] 180. Consecutive Numbers Write a SQL q...

A brief discussion on MySQL large table optimization solution

background The amount of new data in the business...

Solution to the MySQL error "Every derived table must have its own alias"

MySQL reports an error when executing multi-table...

Question about custom attributes of html tags

In previous development, we used the default attr...

How to clear the cache after using keep-alive in vue

What is keepalive? In normal development, some co...

Ubuntu compiles kernel modules, and the content is reflected in the system log

Table of contents 1.Linux login interface 2. Writ...

Common repair methods for MySQL master-slave replication disconnection

Table of contents 01 Problem Description 02 Solut...

Detailed explanation of non-parent-child component value transfer in Vue3

Table of contents App.vue sub1.vue sub2.vue Summa...

MySQL uses find_in_set() function to implement where in() order sorting

This article introduces a tutorial about how to u...

CentOS6 upgrade glibc operation steps

Table of contents background Compile glibc 2.14 M...

CentOS 8 officially released based on Red Hat Enterprise Linux 8

The CentOS Project, a 100% compatible rebuild of ...

An Incomplete Guide to JavaScript Toolchain

Table of contents Overview Static type checking C...