centerOs7 online installation nginx

1. Install gcc gcc-c ++ (such as the new environment, and install, does not)
yum the install -Y-C GCC GCC ++
2. Install wget
yum the install wget -Y
>>> PCRE library installation, installation SSL library, inventory install zlib
3 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
4.安装SSL库

cd /usr/local/

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

tar -zxvf openssl-1.0.1j.tar.gz

cd openssl-1.0.1j

./config

&& the install the make the make
5. The mounting zlib Stock
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
6.安装nginx

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

the make install && the make
7.nginx operating
sbin / nginx // open the service
sbin / nginx -t // nginx server to view the status of
./nginx -s stop // stop the server
./nginx -s reload // reload the server
./ nginx -s reopen // reopen server
./nginx -s quit // exit server

Guess you like

Origin www.cnblogs.com/wangmeng960111/p/10990114.html
Recommended