首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 开源软件 >

niginx装配

2012-07-08 
niginx安装版本: nginx-1.2.1注意:安装之前要保证已经安装了 gcc 和gcc-c++.tar.bz2的解压方法是:bzip2 -d

niginx安装

版本: nginx-1.2.1

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

.tar.bz2的解压方法是:bzip2 -d xxxx???? 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/

?

?

热点排行