1.2  nginx编译安装

一、下载、解压nginx
#cd /usr/local/src/
#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 \
--prefix=/usr/local/nginx \
--with-pcre
出现build the PCRE librarystatically from the source with nginx by using --with-pcre=<path> option.       则安装yum install -y pcre-devel
三、编译、安装nginx
#make
#make install
四、启动nginx
# /usr/local/apache2/bin/apachectl stop    停止Apache
# /usr/local/nginx/sbin/nginx   //启动nginx
# ps aux |grep nginx    //过滤进程


你可能感兴趣的:(1.2  nginx编译安装)