美文网首页
linux下的Nginx安装

linux下的Nginx安装

作者: LL1502 | 来源:发表于2017-09-30 14:58 被阅读0次

    一、安装准备

    A、rewrite模块需要pcre库,下载地址:http://www.pcre.org/

    B、SSL功能需要openssl库,下载地址:http://www.openssl.org/

    C、gzip模块需要zlib库,下载地址:http://www.zlib.net/

    D、Nginx的安装包:下载地址为:http://nginx.org/en/download.html

    二、PCRE安装

    2.1、通过yum安装pcre和pcre-devel

    yum install pcre pcre-devel -y

    2.2、查看安装情况

    rpm -qa pcre pcre-devel

    三、OpenSSL安装

    3.1、通过yum安装openssl和openssl-devel

    yum install openssl openssl-devel -y

    3.2、检查安装情况

    rpm -qa openssl openssl-devel

    四、zlib库安装

    4.1、通过yum安装

    yum install zlib zlib-devel -y

    4.2、查看安装情况

    rpm -qa zlib zlib-devel

    五、为Nginx配置用户

    useradd www -s /sbin/nologin -M

    六、Nginx安装 (编译安装方式)

    6.1、下载Nginx

    wget http://nginx.org/download/nginx-1.13.5.tar.gz

    6.2、解压Nginx

    tar -zxvf nginx-1.13.5.tar.gz

    6.3、配置Nginx

    ./configure --user=www --group=www --with-http_stub_status_module --with-http_ssl_module --prefix=/application/nginx-1.13.5

    6.4、编译和安装Nginx

    make

    make install

    注意:

    编译安装  需要安装c++依赖库

    yum install gcc-c++ 

    yum -y install gcc automake autoconf libtool make

    相关文章

      网友评论

          本文标题:linux下的Nginx安装

          本文链接:https://www.haomeiwen.com/subject/kjbgextx.html