Detailed tutorial on installation and configuration of nginx under Centos7

Detailed tutorial on installation and configuration of nginx under Centos7

Note: The basic directory path for software installation is: /usr/local, so when downloading the software, switch to this directory and download and decompress it directly.

1. Install gcc gcc-c++ dependency packages

yum install -y gcc gcc-c++

2. Download, compile and install the PCRE library

Switch to the usr/local directory and execute the command

Download the installation package

wget http://jaist.dl.sourceforge.net/project/pcre/pcre/8.33/pcre-8.33.tar.gz

Unzip the installation package

tar -zxvf pcre-8.36.tar.gz

Compile and install

cd pcre-8.36
./configure
make && make install

3. Download, compile and install the SSL library

Download the installation package

wget http://www.openssl.org/source/openssl-1.0.1j.tar.gz

Unzip the compressed file

tar -zxvf openssl-1.0.1j.tar.gz

Compile and install

cd openssl-1.0.1j
./config
make && make install

4. Download, compile and install zlib dependency library

Download the installation package

wget http://zlib.net/zlib-1.2.11.tar.gz

Unzip the installation package

tar -zxvf zlib-1.2.11.tar.gz

Compile and install

cd zlib-1.2.11
./configure
make && make install

After the dependent packages and environment are installed and configured, you need to install nginx

5. Installation of nginx

Download the installation package

wget http://nginx.org/download/nginx-1.8.0.tar.gz
Unzip the installation package

tar -zxvf nginx-1.8.0.tar.gz

Compile and install

cd nginx-1.8.0
./configure --user=nobody --group=nobody --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_gzip_static_module --with-http_realip_module --with-http_sub_module --with-http_ssl_module
make && make install

(Note: In the second compilation instruction: --prefix=/usr/local/nginx specifies the compilation and installation directory. After successful compilation, the nginx installation folder will be displayed in the /usr/local directory. You can delete the nginx-1.8.0 compilation file)

6.nginx related operation commands

Switch to the nginx directory

cd /usr/local/nginx

Execute the following command

Start nginx

./sbin/nginx

Check whether the nginx configuration file is correct

./sbin/nginx -t

As shown in the figure, the nginx configuration file is accurate.

Stop nginx

Check the process number occupied by nginx and end it

ps -ef | grep nginx
kill -9 port number

Summarize

The above is a detailed explanation of the installation and configuration tutorial of nginx under Centos7 introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor 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:
  • How to install cphalcon extension in php under Linux centos
  • Phalcon Framework Usage Guide
  • Phalcon model automatically verifies the solution of non-empty fields when inserting or updating
  • Building .NET Core 2.0 + Nginx + Supervisor environment under Centos7 system
  • CentOS7 + node.js + nginx + MySQL server building process
  • Detailed explanation of the construction of a load balancing server based on Centos7+Nginx+Tomcat8
  • Install and configure Nginx on CentOS 7
  • Compile, install and configure Nginx+PHP+MySql environment under Centos7
  • How to install Nginx in CentOS7 and configure automatic startup
  • CentOS7 configuration Nginx support HTTPS access implementation solution
  • Detailed explanation of Nginx installation, SSL configuration and common commands under Centos7.x
  • Detailed explanation of how to build phalcon environment under nginx server on centos7 system

<<:  Detailed explanation of the definition and function of delimiter in MySQL

>>:  React Native environment installation process

Recommend

Detailed example of locating and optimizing slow query sql in MySQL

Table of contents 1. How to locate and optimize s...

JS realizes special effects of web page navigation bar

This article shares with you a practical web navi...

Native js to realize the upload picture control

This article example shares the specific code of ...

Overview and differences between html inline elements and html block-level elements

Block-level element features : •Always occupies a ...

Detailed explanation of the use of docker tag and docker push

Docker tag detailed explanation The use of the do...

In-depth understanding of the seven communication methods of Vue components

Table of contents 1. props/$emit Introduction Cod...

Common interview questions and answers for web designer positions

1. What are the templates for ASP.NET Web applicat...

Solve the problem of resetting the Mysql root user account password

Problem description: The following error message ...

HTML tags list and usage instructions

List of HTML tags mark type Name or meaning effec...

React new version life cycle hook function and usage detailed explanation

Compared with the old life cycle Three hooks are ...

Pure CSS meteor shower background sample code

GitHub address, you can star it if you like it Pl...

MySQL 8.0.25 installation and configuration method graphic tutorial

The latest download and installation tutorial of ...

How to unify the character set on an existing mysql database

Preface In the database, some data tables and dat...

MySQL foreign key (FOREIGN KEY) usage case detailed explanation

Introduction: The disadvantages of storing all da...

MySQL 5.7.21 installation and password configuration tutorial

MySQL5.7.21 installation and password setting tut...