技术员联盟提供win764位系统下载,win10,win7,xp,装机纯净版,64位旗舰版,绿色软件,免费软件下载基地!

当前位置:主页 > 教程 > 服务器类 >

解决安装Nginx时报错一例

来源:技术员联盟┆发布时间:2018-07-16 12:06┆点击:

  有时候,我们需要单独安装nginx,来处理大量的下载请求。单独在Centos5安装nginx遇到的rewrite和HTTP cache错误解决办法:

  wget

  tar -zxvf nginx-0.8.33.tar.gz

  cd nginx-0.8.33

  ./configure –prefix=http://www.3lian.com/usr/local/nginx

  安装Nginx时报错

  ./configure: error: the HTTP rewrite module requires the PCRE library.

  安装pcre-devel解决问题

  yum -y install pcre-devel

  错误提示:./configure: error: the HTTP cache module requires md5 functions

from OpenSSL library.   You can either disable the module by using
–without-http-cache option, or install the OpenSSL library into the system,
or build the OpenSSL library statically from the source with nginx by using
–with-http_ssl_module –with-openssl=<path> options.

  解决办法:

  yum -y install openssl openssl-devel

  总结:

  yum -y install pcre-devel openssl openssl-devel

  ./configure –prefix=http://www.3lian.com/usr/local/nginx