标签:style class http tar ext color
运行环境:
ubuntu 14.04
下载及安装使用nginx的必备软件:
gcc编译器:
sudo apt-get install gcc
g++编译器:
sudo apt-get install g++
PCRE库:
wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.21.tar.gz
tar -vxzf pcre-8.21.tar.gz
./configure
make
make install
zlib库:
wget http://www.zlib.net/zlib-1.2.8.tar.gz
tar -vxzfzlib-1.2.8.tar.gz
./configure
make
sudo make install
OpenSSL库:
wget http://www.openssl.org/source/openssl-0.0.1c.tar.gz
tar -vxzf openssl-0.0.1c.tar.gz
./config
make
sudo make install
查看nginx启动进程:
ps -ef | grep nginx
返回master进程信息和worker进程信息
标签:style class http tar ext color
原文地址:http://blog.csdn.net/walkerkalr/article/details/32172325