美文网首页
源码安装Nginx

源码安装Nginx

作者: 不排版 | 来源:发表于2018-03-21 11:06 被阅读12次

    yum groupinstall "development tools" -y
    yum -y install gcc gcc-c++ gcc-g77 autoconf automake zlib* fiex* libxml* ncurses-devel libmcrypt* libtool-ltdl-devel* make cmake
    yum install pcre-devel -y

    tar –zxvf nginx-1.6.1.tar.gz

    cd nginx-1.6.1

    ./configure

    make&&make install

    ls /usr/local/nginx --》 conf html logs sbin

    启动nginx

    /usr/local/nginx/sbin/nginx

    查看进程

    netstat –antlp |grep nginx

    重启

    /usr/local/nginx/sbin/nginx -s reload

    打开浏览器访问 http://localhost --》 Welcome to nginx

    相关文章

      网友评论

          本文标题:源码安装Nginx

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