Linux中nginx的源码安装

一:系统环境

操作系统:Ubuntu 13.10 x64

nginx-1.7.1.tar.gz

pcre-8.33.tar.gz

openssl-1.0.1h.tar.gz

zlib-1.2.8.tar.gz

 

二:安装

1:解压上面的tar.gz文件到/soft目录

2:安装pcre

  ./configure –prefix=/usr/local/pcre

   Make

   Makeinstall

3:安装 zlib

   ./configure–prefix=/usr/local/zlib

   Make

   Makeinstall

4:安装openssl

  ./config –prefix=/usr/local/openssl

   Make

   Makeinstall

5:安装nginx

   ./configure--prefix=/usr/local/nginx --with-http_ssl_module --with-pcre=/soft/pcre-8.33--with-zlib=/soft/zlib-1.2.8 --with-openssl=/soft/openssl-1.0.1h

   Make

   Makeinstall

  

   注意:安装nginx指定的路径,要指定源码的路径,而不是安装后的路径

 

三:启动和停止

./nginx  (启动)

./nginx –s stop(停止)

./nginx –s reopen(重启)

./nginx –s reload(重新加载)

你可能感兴趣的:(Linux中nginx的源码安装)