Detailed explanation of the installation process of Jenkins on CentOS 7

Detailed explanation of the installation process of Jenkins on CentOS 7

Install Jenkins via Yum

1. Installation

# yum source import wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat-stable/jenkins.repo
# Import key rpm --import https://pkg.jenkins.io/redhat-stable/jenkins.io.key
# Install yum install -y jenkins

2. Open Ports

# The port can be modified in the /etc/sysconfig/jenkins file, the default is 8080
firewall-cmd --add-port=8080/tcp --permanent
firewall-cmd --reload

3. Configure Java path

# Modify the jenkins startup script vim /etc/init.d/jenkins

# Modify candidates to add java optional path: /usr/java/jdk1.8.0_181/bin/java
candidates="
/etc/alternatives/java
/usr/lib/jvm/java-1.8.0/bin/java
/usr/lib/jvm/jre-1.8.0/bin/java
/usr/lib/jvm/java-1.7.0/bin/java
/usr/lib/jvm/jre-1.7.0/bin/java
/usr/bin/java
/usr/java/jdk1.8.0_181/bin/java
"

4. Start Jenkins and set it to start at boot

#Reload the service (due to the modification of the Jenkins startup script)
systemctl daemon-reload

#Start the Jenkins service systemctl start jenkins

#Set the Jenkins service to start at boot #Since Jenkins is not a native service, you need to use the chkconfig command instead of the systemctl command /sbin/chkconfig jenkins on

5. Jenkins Initialization

Use cat /var/lib/jenkins/secrets/initialAdminPassword to view the password, enter it on the Jenkins management page to unlock it, and then you can perform visual operations!

When you start Jenkins for the first time, you may see the page display "Please wait while Jenkins is getting ready to work ...". Edit the /var/lib/jenkins/hudson.model.UpdateCenter.xml file and change "https://updates.jenkins.io/update-center.json" to "http://mirror.xmission.com/jenkins/updates/update-center.json".

6. Others

6.1 Set Jenkins time zone to Beijing time

Open [System Management] -> [Script Command Line] and run the following command

System.setProperty('org.apache.commons.jelly.tags.fmt.timeZone', 'Asia/Shanghai')

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Detailed steps to install Jenkins on centos 7 system
  • How to install Jenkins on CentOS
  • Setting up GitLab+Jenkins continuous integration environment under centos (installing Jenkins)
  • How to install Jenkins on CentOS 8
  • CentOS 7 installation of Jenkins detailed introduction
  • Complete steps to install Jenkins under CentOS

<<:  Detailed example of jQuery's chain programming style

>>:  Troubleshooting and solutions for MySQL auto-increment ID oversize problem

Recommend

Some tips on deep optimization to improve website access speed

Some tips for deep optimization to improve websit...

Code for implementing simple arrow icon using div+CSS in HTML

In web design, we often use arrows as decoration ...

Implementation of importing and exporting vue-element-admin projects

vue-element-admin import component encapsulation ...

MySQL 8.0.12 installation and configuration method graphic tutorial

Record the installation and configuration method ...

Summary of Linux file basic attributes knowledge points

The Linux system is a typical multi-user system. ...

The latest virtual machine VMware 14 installation tutorial

First, I will give you the VMware 14 activation c...

In-depth analysis of MySQL database transactions and locks

Table of contents 1. Basic Concepts ACID 3.AutoCo...

MySQL5.7 single instance self-starting service configuration process

1.MySQL version [root@clq system]# mysql -v Welco...

A quick solution to the problem of PC and mobile adaptation

When making a web page, we usually need to consid...

SQL uses ROW_NUMBER() OVER function to generate sequence number

Syntax: ROW_NUMBER() OVER(PARTITION BY COLUMN ORD...

How to solve the high concurrency problem in MySQL database

Preface We all know that startups initially use m...

Tips for creating two-dimensional arrays in JavaScript

Creation of a two-dimensional array in Js: First ...

Summary of solutions for MySQL not supporting group by

I downloaded and installed the latest version of ...

Get a list of your top 10 most frequently used terminal commands in Linux

I think the commands I use most often are: Choice...

HTML sample code for implementing tab switching

Tab switching is also a common technology in proj...