美文网首页
centos install nginx

centos install nginx

作者: limk_Mr | 来源:发表于2018-06-01 19:08 被阅读0次

    1. 安装gcc的环境

    $ yum install gcc-c++
    

    2.安装第三方依赖包

    PCRE(Perl Compatible Regular Expressions)是一个Perl库,包括 perl 兼容的正则表达式库。nginx的http模块使用pcre来解析正则表达式,所以需要在linux上安装pcre

    $ yum install -y pcre pcre-devel
    

    zlib库提供了很多种压缩和解压缩的方式,nginx使用zlib对http包的内容进行gzip,所以需要在linux上安装zlib库

    $yum install -y zlib zlib-devel
    

    OpenSSL 是一个强大的安全套接字层密码库,囊括主要的密码算法、常用的密钥和证书封装管理功能及SSL协议,并提供丰富的应用程序供测试或其它目的使用。

    $yum install -y openssl openssl-devel
    

    3.下载ngixn源文件,解压tar.gz

    先进入 /usr/local/src 目录下,后去安装软件都要下载到这个目录, 然后进行安装

    $cd /usr/local/src
    $wget http://nginx.org/download/nginx-1.8.1.tar.gz
    $tar -zxvf ./nginx-1.8.1.tar.gz
    $cd nginx-1.8.1
    $ ./configure
    
    指定nginx文件路径的配置
    ./configure --user=nginx --group=nginx --with-http_flv_module --with-http_stub_status_module --with-http_gzip_static_module --http-client-body-temp-path=/var/tmp/nginx/client/ --http-proxy-temp-path=/var/tmp/nginx/proxy/ --http-fastcgi-temp-path=/var/tmp/nginx/fcgi/ --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi --http-scgi-temp-path=/var/tmp/nginx/scgi --with-pcre --add-module=/usr/local/src/fastdfs-nginx-module/src
    

    make && make install##

    $make
    $make install
    

    创建临时目录##

    $mkdir /var/temp/nginx/client -p
    

    启动nginx##

    $cd /usr/local/nginx/sbin/
    $ ./nginx
    

    如果启动时提示:nginx: [emerg] getpwnam("nginx") failed
    没有安装nginx用户导致的无法启动

    useradd -s /sbin/nologin -M nginx
    

    相关文章

      网友评论

          本文标题:centos install nginx

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