How to install Nginx server under CentOS7

WBOY
Release: 2023-05-13 20:43:04
forward
3405 people have browsed it

Installation required environment

nginx is developed in C language. It is recommended to run on Linux. Of course, you can also install the windows version. This article uses centos 7 as the installation environment.

1. gcc installation

To install nginx, you need to compile the source code downloaded from the official website first. The compilation depends on the gcc environment. If there is no gcc environment, you need to install it. :

yum install gcc-c++
Copy after login

2. pcre pcre-devel installation

pcre (perl compatible regular expressions) is a perl library, including perl compatible regular expressions 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. Command:

yum install -y pcre pcre-devel
Copy after login

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
Copy after login

4. openssl installation

openssl is a powerful secure socket layer cryptographic library, including major cryptographic algorithms, commonly used keys and The certificate encapsulates management functions and SSL protocols, and provides a rich set of applications for testing or other purposes.
nginx not only supports http protocol, but also supports https (that is, transmitting http over ssl protocol), so you need to install the openssl library on centos.

yum install -y openssl openssl-devel
Copy after login

Official website download

1. Directly download the .tar.gz installation package, address:

How to install Nginx server under CentOS7

2. Use the wget command to download ( recommend).

wget -c https://nginx.org/download/nginx-1.10.1.tar.gz
Copy after login

How to install Nginx server under CentOS7

I downloaded version 1.10.1, which is the current stable version.

Decompression

is still a direct command:

tar -zxvf nginx-1.10.1.tar.gz
cd nginx-1.10.1
Copy after login

Configuration

In fact, it is in nginx-1.10. In version 1, you don’t need to configure related things, the default is fine. Of course, it is also possible if you want to configure the directory yourself.

1. Use the default configuration

./configure
Copy after login

2. Customize the configuration (not recommended)

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

Note: Specify the temporary file directory For /var/temp/nginx, you need to create the temp and nginx directories under /var

Compile and install

make
make install
Copy after login

Find the installation path:

whereis nginx
Copy after login

How to install Nginx server under CentOS7

Start and stop nginx

cd /usr/local/nginx/sbin/
./nginx
./nginx -s stop
./nginx -s quit
./nginx -s reload
./nginx -s quit: The stop step in this method is to wait until the nginx process completes the task.
./nginx -s stop: This method is equivalent to first finding out the nginx process ID and then using the kill command to forcefully kill the process.

Query the nginx process:

ps aux|grep nginx
Copy after login

Restart nginx

1. Stop and then start (recommended):

Restarting nginx is equivalent to stopping and then starting, that is, executing the stop command first and then the start command. As follows:

./nginx -s quit
./nginx
Copy after login

2. Reload the configuration file:

When the ngin x configuration file nginx.conf is modified, you need to restart nginx to make the configuration take effect, use -s reload There is no need to stop ngin

Auto-start at boot

How to install Nginx server under CentOS7

Just add the startup code in rc.local.

./nginx -s reload
Copy after login
Add a line /usr/local/nginx/sbin/nginx

Set execution permissions:

vi /etc/rc.local
Copy after login


The above is the detailed content of How to install Nginx server under CentOS7. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:yisu.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!