zoukankan      html  css  js  c++  java
  • nginx安装和遇到的问题197

    nginx安装步骤和遇到的问题 

    tar -xvf nginx-1.15.1.tar.gz
    cd nginx-1.15.1
    ./configrue
    make
    make install

    在configure中可能遇到的问题:

    (1) ./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= option.

    解决办法:安装pcre-devel

    yum -y install pcre-devel

    (2) ./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= option.

    解决办法:安装zlib-devel

    yum install -y zlib-devel
  • 相关阅读:
    Python修饰符实践
    回文
    Linux下安装Qt
    Linux下安装PyQT
    Python闭包实践
    杂乱
    windows下脚本转到linux下,文件保存格式要转换
    lua table.sort的bug
    shell截取某段
    coredump
  • 原文地址:https://www.cnblogs.com/Ai-Hen-Jiao-zhi/p/10356763.html
Copyright © 2011-2022 走看看