Jenkins is an open-source and continuous integration tool and easy to install on Centos 7.
Jenkins is entirely written in Java and install on Centos 7.

Hardware Requirement:
RAM: 256 MB
Hard disk: 1GB

Prerequisite:
Software: wget, net-tools(netstat command to Check the open ports), Java, Nginx(Optional)

Note: Log in as the root user or If you are login as a non-root user then make sure that the user has sudo access. For non-root users use sudo before every command.
Check the following Jenkin installation steps on CentOS 7.

Step 1:
Install java:
yum install java-11-openjdk -y
java -version
Output:
openjdk version "11.0.4" 2019-07-16 LTS
OpenJDK Runtime Environment 18.9 (build 11.0.4+11-LTS)
OpenJDK 64-Bit Server VM 18.9 (build 11.0.4+11-LTS, mixed mode, sharing)

Note: Check & Install the available java version

Step 2:
Download & install:
wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat-stable/jenkins.repo
rpm --import 
https://pkg.jenkins.io/redhat/jenkins.io.key
yum install jenkins -y

Step 3:
Enable, start & check the Jenkins service:
systemctl enable jenkins.service
systemctl start jenkins.service
systemctl status jenkins.service

Check the Jenkins Service after starting the Jenkins service
Jenkins Service

Step 4:
Enable the 8080/tcp port in the firewall:
firewall-cmd --add-port=8080/tcp --permanent
firewall-cmd --reload
firewall-cmd --list-all
Note: If you are using Nginx configuration, then do not use the above commands.
Follow the “Install and configure the Nginx with Jenkins(Optional)” instruction for Nginx configuration in this article after Step 12.

Step 5:
Check Jenkins port:
netstat -ntpl | grep 8080

Check Jenkins Port after starting the Jenkins service.
Check Jenkins Port

Enter the following URL in the browser.
http://<IP/fqdn>:8080
IP: Enter the IP address of Jenkins instance.
fqdn: Enter the fully qualified domain name of Jenkins instance, if specified.
It opens the first window of Jenkins which is “Unlock Jenkins”

Step 6:
Configure the Jenkins:
Copy the password from the /var/lib/jenkins/secrets/initialAdminPassword file in Jenkins instance and paste in the following window. Click on the “Continue” button.

Unlock Jenkins server to enter the password after installing the Jenkins
Unlock Jenkins

Step 7:
Install plugins:
There are two options for plugin installation.
1. Install suggested plugins.
2. Select plugins to install.
In this process, we select the first option, which is “Install suggested plugins.” If you want to install more plugins, then select the second option, which is “Select plugins to install.”

Select the plugin install option on Jenkins. Select the recommended option to install the plugins
Install suggested plugins

Step 8:
Gettting started:
The plugin installation started.

The installation gets started plugin according to the selected plugin installation option.
Getting started

Step 9:
Create the first admin user:
Enter the Username, Password, Confirm password, Full name, E-mail address in the following window. Click on the “Save and Continue” button. OR you can select an option the “Continue as admin.”

Create the first admin user to login to Jenkins.
Create first admin user

Step 10:
Instance configuration:
Click on the “Save and Continue” button.

Instance Configuration
Instance Configuration

Step 11:
Jenkins is ready:
Now jenkins is ready. Click on the “Start using Jenkins” button.

All plugins installed also created admin user now Jenkins is ready to use.
Jenkins Is Ready

Step 12:
Welcome to Jenkins:
Now, you can create your first job in the Jenkins.

Welcome To Jenkins, Jenkins logged in with admin user now create the new Jenkins job.
Welcome To Jenkins

Install and configure Nginx:(Optional)

How to install and configure the Nginx on CentOS 7:

Step 1:
Run the following command:
vi /etc/yum.repos.d/nginx.repo
Added the following code to the file.
[nginx]
name
=nginx repo
baseurl
=http://nginx.org/packages/mainline/centos/7/$basearch/
gpgcheck
=0
enabled
=1

Step 2:
Run the following command to install the Nginx:
yum install nginx -y

Step 3:
Enable, start and check the Nginx service:
systemctl enable nginx
systemctl start nginx
systemctl status nginx

Check Nginx service  is running or not after starting the Nginx service
Check Nginx service

Step 4:
Run the following command to check the Nginx port:
netstat -ntpl | grep nginx

Check Nginx Port after starting the Nginx service
Check Nginx Port

Step 5:
Run the following command to enable the Http port in the firewall:
firewall-cmd --permanent --zone=public --add-service=http
firewall-cmd --reload

Step 6:
Configure Nginx with Jenkins:
Check the following files.
/etc/nginx/conf.d/default.conf
/etc/nginx/nginx.conf

If you find the following entry in the file /etc/nginx/nginx.conf
include /etc/nginx/conf.d/*.conf;
then use this file for/etc/nginx/conf.d/default.conf configuration.

Step 7:
Search the following line in the /etc/nginx/conf.d/default.conf file.
location / {
}
Make comment the lines in the above block and make entry of the following code and code should look like:

location / {
    proxy_pass http://127.0.0.1:8080;
    proxy_redirect off;
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto $scheme;
}
Save and quite file using following option.
:wq

Step 8:
Run the following command to enable the SELinux permission for Nginx.
setsebool -P httpd_can_network_connect 1

Step 9:
Restart the Nginx service.
systemctl restart Nginx
Enter the following URL in the browser.
http://<IP/fqdn>
IP: Enter the IP address of Jenkins instance.
fqdn: Enter the fully qualified domain name of Jenkins instance, if specified.
Start configuration from Step 6.