zoukankan      html  css  js  c++  java
  • 如何使用源码编译安装Nginx服务器

    安装 PCRE :

    网站:http://pcre.org/

    下载:

    安装 Nginx :

    安装命令:

    下载:
    wget http://nginx.org/download/nginx-1.8.0.tar.gz
    
    tar zxf nginx-1.8.0.tar.gz
    cd nginx-1.8.0
    ./configure --prefix=/usr/local/nginx
    make
    sudo make install
    
    ./configure --prefix=/usr/local/nginx 
        --sbin-path=/usr/local/nginx/nginx 
        --conf-path=/usr/local/nginx/nginx.conf 
        --pid-path=/usr/local/nginx/nginx.pid 
        --with-http_ssl_module 
    
    
    
    
    ps -ef |grep nginx
    
    启动Nginx: 
    sudo /usr/local/nginx/sbin/nginx
    
    重新加载配置文件:
    sudo /usr/local/nginx/sbin/nginx -t
    sudo /usr/local/nginx/sbin/nginx -s reload
    
    

    查看Nginx版本:

    /usr/local/nginx/sbin/nginx -V
    Mac-mini:nginx-1.8.0 WangTom$ /usr/local/nginx/sbin/nginx -V
    nginx version: nginx/1.8.0
    built by clang 6.1.0 (clang-602.0.53) (based on LLVM 3.6.0svn)
    configure arguments: --prefix=/usr/local/nginx
    
    Mac-mini:nginx-1.8.0 WangTom$ /usr/local/nginx/sbin/nginx -v
    nginx version: nginx/1.8.0
    

    检查是否安装成功:

    访问: http://localhost/
    页面出现:

    Welcome to nginx!
    
    If you see this page, the nginx web server is successfully installed and working. Further configuration is required.
    
    For online documentation and support please refer to nginx.org.
    Commercial support is available at nginx.com.
    
    Thank you for using nginx.
    

    查看 Nginx 版本:
    Mac-mini:html WangTom$ sudo /usr/local/nginx/sbin/nginx -v
    nginx version: nginx/1.8.0

    检测 Nginx 配置文件
    Mac-mini:html WangTom$ sudo /usr/local/nginx/sbin/nginx -t
    nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
    nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful

    To apply the new configuration, start nginx if it is not yet started or send the reload signal to the nginx’s master process, by executing:
    Mac-mini:html WangTom$ sudo /usr/local/nginx/sbin/nginx -s reload
    Mac-mini:html WangTom$

    参考地址:

    Building nginx from Sources:
    http://nginx.org/en/docs/configure.html

    [END]

  • 相关阅读:
    clickhouse使用docker安装单机版
    nacos使用docker安装单机版
    第三周学习进度
    第二周学习进度
    二柱子四则运算定制版
    课堂测试小程序
    学习进度
    阅读计划
    自我介绍
    寻找水王
  • 原文地址:https://www.cnblogs.com/wangyongtao/p/4598166.html
Copyright © 2011-2022 走看看