How to install nginx in centos7

How to install nginx in centos7

Install the required environment

1. gcc installation

To install nginx, you need to compile the source code downloaded from the official website. The compilation depends on the gcc environment. If you don’t have the gcc environment, you need to install it:

yum install gcc-c++

2. PCRE pcre-devel installation

PCRE (Perl Compatible Regular Expressions) is a Perl library that includes a Perl compatible regular expression library. The http module of nginx uses pcre to parse regular expressions, so the pcre library needs to be installed on Linux. pcre-devel is a secondary development library developed using pcre. nginx also requires this library. Order:

yum install -y pcre pcre-devel

3. zlib installation

The zlib library provides many compression and decompression methods. Nginx uses zlib to gzip the contents of the http package, so the zlib library needs to be installed on Centos.

yum install -y zlib zlib-devel

4. OpenSSL Installation

OpenSSL is a powerful secure socket layer cryptographic library that includes major cryptographic algorithms, commonly used key and certificate packaging management functions, and SSL protocols, and provides a wealth of applications for testing or other purposes. Nginx not only supports the http protocol, but also supports https (that is, transmitting http over the ssl protocol), so you need to install the OpenSSL library on Centos.

yum install -y openssl openssl-devel

Download the official website

Download the .tar.gz installation package directly from: https://nginx.org/en/download.html

Unzip

tar -zxvf nginx-1.10.1.tar.gzcd nginx-1.10.1

Configuration
1. Use the default configuration

./configure

Compile and install

make
make install

Find the installation path:

whereis nginx

Start and stop nginx

cd /usr/local/nginx/sbin/
./nginx
./nginx -s stop
./nginx -s quit
./nginx -s reload

Query the nginx process: ps aux|grep nginx

To enable automatic startup, just add the startup code in rc.local.

vi /etc/rc.local

Add a row

/usr/local/nginx/sbin/nginx

Set Execute Permissions

chmod 755 rc.loca

You may also be interested in:
  • Install and configure Nginx on CentOS 7
  • Two methods of installing nginx on centos7
  • Detailed explanation of the solution to Nginx startup in Centos7
  • CentOS7 + node.js + nginx + MySQL server building process
  • How to Install Nextcloud with Nginx and PHP7-FPM in CentOS7
  • Compile, install and configure Nginx+PHP+MySql environment under Centos7
  • CentOS7 configuration Nginx support HTTPS access implementation solution

<<:  Pitfalls encountered when installing MySQL 5.7.17 compressed version under Windows

>>:  Implementation of WeChat applet message push in Nodejs

Recommend

Linux CentOS MySQL database installation and configuration tutorial

Notes on installing MySQL database, share with ev...

js to achieve sliding carousel effect

This article shares the specific code of js to ac...

How to delete a MySQL table

It is very easy to delete a table in MySQL, but y...

Write a dynamic clock on a web page in HTML

Use HTML to write a dynamic web clock. The code i...

Div adaptive height automatically fills the remaining height

Scenario 1: Html: <div class="outer"...

js to implement web calculator

How to make a simple web calculator using HTML, C...

Use iframe to display weather effects on web pages

CSS: Copy code The code is as follows: *{margin:0;...

Steps to create a Vite project

Table of contents Preface What does yarn create d...

MySQL permissions and database design case study

Permissions and database design User Management U...

An article tells you how to write a Vue plugin

Table of contents What is a plugin Writing plugin...

Vue project @change multiple parameters to pass multiple events

First, there is only one change event. changeleve...

Two ways to reset the root password of MySQL database using lnmp

The first method: Use Junge's one-click scrip...

Detailed explanation of Vue's methods and properties

Vue methods and properties 1. Methods Usage 1 met...