• ubuntu 16.04通过源码方式安装nginx


    1.下载nginx源码包

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

    2.解压该tar包

    tar zxvf nginx-1.11.12.tar.gz

    3.编译参数说明

    --prefix=path   定义一个目录来保存你的nginx的提供功能的文件夹,就这好比我们安装软件的时候软件存放的目录,如果我们在编译的不指定安装位置,那么默认的位置/usr/local/nginx 目录

    --sbin-path=path 设置nginx执行脚本的位置,这里如果设置在path变量里面,就可以在bash环境下,任意使用nginx命令,默认位置prefix/sbin/nginx  注意这里的prefix是在配置文件里面配置的路径

    --conf-path=path 配置nginx配置文件的路径,如果不指定这个选项,那么配置文件的默认路径就会是 prefix/conf/nginx.conf

    --pid-path =path 配置nginx.pid file的路径,一般来说,进程在运行的时候的时候有一个进程id,这个id会保存在pid file里面,默认的pid file的放置位置是prefix/logs/nginx.pid

    --error-log-path=path 设置错误日志的存放路径,如果不指定,就默认 prefix/logs/error.log

    --http-log-path= path 设置http访问日志的路径,如果不指定,就默认 prefix/logs/access.log

    --user=name  设置默认启动进程的用户,如果不指定,就默认 nobody

    --group=name 设置这个用户所在的用户组,如果不指定,依然是nobody

    这些是我们常用的编译选项,其他的可以均保持默认,如需特殊指定,可上nginx官网查阅 http://nginx.org/en/docs/configure.html


    下面是一些不常用的选项

    --with-http_ssl_module -开启HTTP SSL模块,使NGINX可以支持HTTPS请求。需要安装了OPENSSL   

     --with-http_flv_module   

     --with-http_stub_status_module - 启用 "server status" 页(可有可无)   

     --without-http_gzip_module - 禁用 ngx_http_gzip_module. 如果启用,需要 zlib 。   

     --without-http_ssi_module - 禁用 ngx_http_ssi_module   

    --without-http_referer_module - 禁用 ngx_http_referer_module   

     --without-http_rewrite_module - 禁用 ngx_http_rewrite_module. 如果启用需要 PCRE 。   

     --without-http_proxy_module - 禁用 ngx_http_proxy_module   

     --without-http_fastcgi_module - 禁用 ngx_http_fastcgi_module   

     --without-http_memcached_module - 禁用 ngx_http_memcached_module   

     --without-http_browser_module - 禁用 ngx_http_browser_module   

     --http-proxy-temp-path=PATH - Set path to the http proxy temporary files   

     --http-fastcgi-temp-path=PATH - Set path to the http fastcgi temporary files   

     --without-http - 禁用 HTTP server(用作代理或反向代理)   

     --with-mail - 启用 IMAP4/POP3/SMTP 代理模块   

     --with-mail_ssl_module - 启用 ngx_mail_ssl_module   

     --with-openssl=DIR - Set path to OpenSSL library sources  


    4.源码编译步骤

    a.切换到解压目录

    cd nginx-1.11.12

    b.执行configure命令

    sudo ./configure

    c.执行make命令

    sudo make

    d.执行安装命令

    sudo make install

    注意:

    如果编译过程出现the HTTP rewrite module requires the PCRE library.的错误

    需要安装以下插件 

    安装pcre

    sudo apt install   libpcre3 libpcre3-dev

    安装 openssl

    sudo apt-get intall openssl libssl-dev

    5.使用sysv-rc-conf(chkconfig)的方式管理nginx服务

    安装sysv-rc-conf:sudo apt-get install sysv-rc-conf

    a.首先添加nginx服务管理的脚本

    sudo vim  /etc/init.d/nginx

    #! /bin/sh
    # chkconfig: 2345 55 25
    # Description: Startup script for nginx webserver on Debian. Place in /etc/init.d and
    # run 'update-rc.d -f nginx defaults', or use the appropriate command on your
    # distro. For CentOS/Redhat run: 'chkconfig --add nginx'
    
    ### BEGIN INIT INFO
    # Provides:          nginx
    # Required-Start:    $all
    # Required-Stop:     $all
    # Default-Start:     2 3 4 5
    # Default-Stop:      0 1 6
    # Short-Description: starts the nginx web server
    # Description:       starts nginx using start-stop-daemon
    ### END INIT INFO
    
    # Author:   licess
    # website:  http://lnmp.org
    
    PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
    NAME=nginx
    NGINX_BIN=/usr/local/nginx/sbin/$NAME
    CONFIGFILE=/usr/local/nginx/conf/$NAME.conf
    PIDFILE=/usr/local/nginx/logs/$NAME.pid
    
    case "$1" in
        start)
            echo -n "Starting $NAME... "
    
            if netstat -tnpl | grep -q nginx;then
                echo "$NAME (pid `pidof $NAME`) already running."
                exit 1
            fi
    
            $NGINX_BIN -c $CONFIGFILE
    
            if [ "$?" != 0 ] ; then
                echo " failed"
                exit 1
            else
                echo " done"
            fi
            ;;
    
        stop)
            echo -n "Stoping $NAME... "
    
            if ! netstat -tnpl | grep -q nginx; then
                echo "$NAME is not running."
                exit 1
            fi
    
            $NGINX_BIN -s stop
    
            if [ "$?" != 0 ] ; then
                echo " failed. Use force-quit"
                exit 1
            else
                echo " done"
            fi
            ;;
    
        status)
            if netstat -tnpl | grep -q nginx; then
                PID=`pidof nginx`
                echo "$NAME (pid $PID) is running..."
            else
                echo "$NAME is stopped"
                exit 0
            fi
            ;;
    
        force-quit)
            echo -n "Terminating $NAME... "
    
            if ! netstat -tnpl | grep -q nginx; then
                echo "$NAME is not running."
                exit 1
            fi
    
            kill `pidof $NAME`
    
            if [ "$?" != 0 ] ; then
                echo " failed"
                exit 1
            else
                echo " done"
            fi
            ;;
    
        restart)
            $0 stop
            sleep 1
            $0 start
            ;;
    
        reload)
            echo -n "Reload service $NAME... "
    
            if netstat -tnpl | grep -q nginx; then
                $NGINX_BIN -s reload
                echo " done"
            else
                echo "$NAME is not running, can't reload."
                exit 1
            fi
            ;;
    
        configtest)
            echo -n "Test $NAME configure files... "
    
            $NGINX_BIN -t
            ;;
    
        *)
            echo "Usage: $0 {start|stop|force-quit|restart|reload|status|configtest}"
            exit 1
            ;;
    
    esac

    b.给脚本添加执行权限

    sudo chmod +x /etc/init.d/nginx

    sudo  sysv-rc-conf --list #查看一下list中有没有刚刚加进去的这个nginx管理脚本

    c.添加到开机自启动

    sudo sysv-rc-conf nginx on(这一步实际上就是实现了一个链接)

    d.加载安装服务

    sudo systemctl enable nginx(如果不愿意重启的话)

    e.启动nginx服务

    sudo service nginx start

    f.测试nginx

    curl localhost

  • 相关阅读:
    RPC-Thrift(三)
    RPC-Thrift(二)
    RPC-Thrift(一)
    RPC-整体概念
    Java并发编程--ThreadPoolExecutor
    Java并发编程--Exchanger
    编译libjpeg库
    树莓派3B+ wifi 5G连接
    手动安装 pygame
    摘记 pyinstaller 使用自定义 spec
  • 原文地址:https://www.cnblogs.com/web424/p/6755891.html
Copyright © 2020-2023  润新知