美文网首页
nginx的yum安装

nginx的yum安装

作者: zhong | 来源:发表于2018-01-16 15:13 被阅读0次

    之前为了便于控制过程,一直都使用nginx的编译安装 的方式进行安装,虽然麻烦,但胜在保险。最近新尝试了一下yum安装,感觉更省事,记录一下。

    1. 安装基础依赖

    yum -y install gcc automake autoconf libtool make gcc-c++ pcre* zlib openssl openssl-devel
    

    2. 编译安装其他自选的依赖包

    如果有需要就自己编译,然后在安装nginx的时候,引入即可

    3. 安装nginx主程序

    其实主程序还是编译安装的囧rz

    ./configure --prefix=/home/trs/FastDFS --sbin-path=/home/trs/FastDFS/nginx --conf-path=/home/trs/FastDFS/nginx.conf --pid-path=/home/trs/FastDFS/nginx.pid --with-http_ssl_module  --add-module=/home/trs/FastDFS/fastdfs-nginx-module/src
    make && make install
    

    以上。

    相关文章

      网友评论

          本文标题:nginx的yum安装

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