Installation and configuration Nginx CentOS 7

A brief nginx

Nginx is a lightweight web server, reverse proxy server. Compared to Apache, lighttpd has possession of less memory, high stability advantages. ** It is the most common use is to provide reverse proxy service. **

 

Nginx second mounting step (following the installation procedure recommended whole root)

0 approximate

In Centos, yum nginx installation source is not available, may be obtained by mounting a handover source yum. You can also directly download the installation package of the method, the following command ** ** required root permission to perform : 
   first install the necessary libraries (nginx in gzip module requires zlib library, rewrite module requires pcre library, ssl feature requires openssl library). Selected ** / usr / local ** for the installation directory, the following specific version number based on the actual change.

 

1 mounted gcc gcc-c ++

# yum install -y gcc gcc-c++

 

2 Install PCRE library

# cd /usr/local/
# wget http://jaist.dl.sourceforge.net/project/pcre/pcre/8.33/pcre-8.33.tar.gz
# tar -zxvf pcre-8.33.tar.gz
# cd pcre-8.33
# ./configure
# make && make install

 

3 Install SSL library

# cd /usr/local/
# wget https://www.openssl.org/source/old/1.0.1/openssl-1.0.1j.tar.gz
# tar -zxvf openssl-1.0.1j.tar.gz
# cd openssl-1.0.1j
# ./config
# make && make install

 

4 installed zlib library

# cd /usr/local/
# wget http://zlib.net/zlib-1.2.11.tar.gz
# tar -zxvf zlib-1.2.11.tar.gz
# cd zlib-1.2.11
# ./configure
# make && make install

 

5 Nginx mounting (mounting of the present version 1.8.0)

# cd /usr/local/
# wget http://nginx.org/download/nginx-1.8.0.tar.gz
# tar -zxvf nginx-1.8.0.tar.gz
# 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 --with-pcre=/usr/local/pcre-8.33 --with-zlib=/usr/local/zlib-1.2.11
(注: --with-http_ssl_module:这个不加后面在nginx.conf配置ssl:on后,启动会报nginx: [emerg] unknown directive "ssl" in /opt/nginx/conf/nginx.conf 异常)
# make && make install

 

Three nginx operation command

1 Start nginx service

# /usr/local/nginx/sbin/nginx

 

2 Restart nginx service

# /usr/local/nginx/sbin/nginx –s reload

 

3 Stop nginx Service

# /usr/local/nginx/sbin/nginx –s stop

 

4 nginx forced to shut down service

# pkill nginx

 

Four nginx configuration

(To be continued)

 

Guess you like

Origin www.cnblogs.com/lich1x/p/11225528.html