Teach you how to quickly install Nginx in CentOS7

Teach you how to quickly install Nginx in CentOS7

1. Overview

Nginx is an indispensable tool when we develop Java projects. Most of the time, it is used as a reverse proxy backend server to achieve load balancing and solve high concurrency.

Most of the time, Nginx installation and configuration is done by operation and maintenance personnel, but in some companies without operation and maintenance positions, developers are still needed to do this work.

Today we will explain how to quickly install Nginx on CentOS7 system without going into details.

2. Download the Nginx installation package

1) Go to the Nginx official website (https://nginx.org/) and click the download link

download

Screenshot from the official website

2) In the Stable version, download the latest version

Download 2

Screenshot from the official website

3. Install dependency packages

In CentOS7 command line mode, enter the following commands in sequence to install the required dependency packages

yum install -y gcc-c++
yum install -y pcre pcre-devel
yum install -y zlib zlib-devel
yum install -y openssl openssl-devel

insert image description here
insert image description here

4. Copy the Nginx installation package to the CentOS7 system and decompress it

There are many ways to copy the installation package to the CentOS7 system. You can use the Xshell tool to connect to the CentOS7 system and use the rz command to upload it, or you can use Xftp or other tools to upload it.

Here we put the Nginx installation package in the /home directory.

Enter the /home directory

Enter the tar -zxvf nginx-1.20.1.tar.gz command to decompress the installation package.

insert image description here

5. Configure Nginx

Enter the unzipped Nginx folder, # cd nginx-1.20.1

Enter the configuration command:

./configure
--prefix=/usr/local/nginx
--pid-path=/var/local/nginx/nginx.pid
--lock-path=/var/local/nginx/nginx.lock
--error-log-path=/var/local/nginx/error.log
–http-log-path=/var/local/nginx/access.log
–with-http_gzip_static_module
–http-client-body-temp-path=/var/local/nginx/client
–http-proxy-temp-path=/var/local/nginx/proxy
–http-fastcgi-temp-path=/var/local/nginx/fastcgi
–http-uwsgi-temp-path=/var/local/nginx/uwsgi
–http-scgi-temp-path=/var/local/nginx/scgi

insert image description here
insert image description here

6. Compile and install

Compile, enter the command: # make

After installation and compilation is complete, enter the command: # make install

insert image description here
insert image description here

7. Start Nginx

Enter the Nginx directory: # cd /usr/local/nginx/sbin

Enter the startup command: # ./nginx

At this time, use the browser to access the IP address of the CentOS7 server, and you can see the homepage of Nginx.

insert image description here

8. Common commands of Nginx

Nginx forced stop command: # ./nginx -s stop

Nginx graceful stop command: # ./nginx -s quit // Graceful stop means waiting until the last interaction is completed before stopping.

Nginx checks the configuration file for errors: # ./nginx -t

Nginx reload command: # ./nginx -s reload

Check the Nginx version: # ./nginx -v

View the detailed version of Nginx: # ./nginx -V

9. Overview

The installation of Nginx is relatively simple. Later, I will introduce other uses of Nginx. Everyone is welcome to communicate more.

This is the end of this article about how to quickly install Nginx in CentOS7. For more information about how to install Nginx in CentOS7, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Solve the problem of "Welcome to nginx on Fedora!" after installing nginx on Centos7, and there is no default.conf file in the conf.d directory
  • How to install Nginx in CentOS7 and configure automatic startup
  • Tutorial on installing lnmp using yum on centos7 (linux+nginx+php7.1+mysql5.7)
  • How to install Nginx using yum in CentOS7
  • How to install Nginx in CentOS7.2
  • How to Install Nextcloud with Nginx and PHP7-FPM in CentOS7
  • Two methods of installing nginx on centos7

<<:  CSS controls the spacing between words through the letter-spacing property

>>:  HTML+CSS+JS to implement the Don't Step on the Whiteboard game

Recommend

8 examples of using killall command to terminate processes in Linux

The Linux command line provides many commands to ...

How to change the terminal to a beautiful command line prompt in Ubuntu 18

I reinstalled VMware and Ubuntu, but the command ...

Mysql database recovery actual record by time point

Introduction: MySQL database recovery by time poi...

4 ways to optimize MySQL queries for millions of data

Table of contents 1. The reason why the limit is ...

MySQL horizontal and vertical table conversion operation implementation method

This article uses examples to illustrate how to i...

A brief introduction to the simple use of CentOS7 firewall and open ports

Overview (official has more detailed description)...

Steps to install MySQL using Docker under Linux

As a tester, you may often need to install some s...

An example of how to implement an adaptive square using CSS

The traditional method is to write a square in a ...

Detailed explanation of MySQL user rights verification and management methods

This article uses examples to illustrate how to v...

Detailed explanation of angular content projection

Table of contents Single content projection Multi...

How to implement Docker volume mounting

The creation of the simplest hello world output i...

The role of MySQL 8's new feature window functions

New features in MySQL 8.0 include: Full out-of-th...

How to compile the Linux kernel

1. Download the required kernel version 2. Upload...

Detailed explanation of the basic use of Apache POI

Table of contents Basic Introduction Getting Star...

Detailed explanation of HTML onfocus gain focus and onblur lose focus events

HTML onfocus Event Attributes Definition and Usag...