niginx安装

rpm -qa | grep :看是否安装了软件

版本: nginx-1.2.1

注意:安装之前要保证已经安装了 gcc 和gcc-c++

.tar.bz2的解压方法是:bzip2 -d xxxx.tar.bz2  然后   tar -xvf xxxx

运行./configure --prefix=/usr/nginx 提示:

./configure: error: the HTTP rewrite module requires the PCRE library.
You can either disable the module by using --without-http_rewrite_module
option, or install the PCRE library into the system, or build the PCRE library
statically from the source with nginx by using --with-pcre=<path> option.

nginx安装依赖PCRE包,也可以直接disable掉rewrite模块。

下载安装PCRE包http://www.pcre.org/

再次运行./configure --prefix=/usr/nginx 提示:

./configure: error: the HTTP gzip module requires the zlib library.
You can either disable the module by using --without-http_gzip_module
option, or install the zlib library into the system, or build the zlib library
statically from the source with nginx by using --with-zlib=<path> option.

nginx安装依赖zlib包,也可以直接disable掉gzip模块。

下载安装zlib包http://www.zlib.org/

安装软件时,注意./configure最后的提示信息,它会告诉你的环境还需要什么。

 --with-xxxx 指向的是源码包!

猜你喜欢

转载自leichenlei.iteye.com/blog/1562869