• [NGINX] NGINX下载、安装编译、启动检查停止命令


    一、NGINX 下载

    mkdir -p /soft/nginx
    cd /soft/nginx
    wget https://nginx.org/download/nginx-1.21.6.tar.gz
    
    • 1
    • 2
    • 3

    二、下载相关依赖

    ①在线安装依赖:

    yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel 
    
    • 1

    ②下载依赖到本地安装依赖:

    yum install --downloadonly --downloaddir=/soft/nginx/ gcc-c++
    yum install --downloadonly --downloaddir=/soft/nginx/ pcre pcre-devel4
    yum install --downloadonly --downloaddir=/soft/nginx/ zlib zlib-devel
    yum install --downloadonly --downloaddir=/soft/nginx/ openssl openssl-devel
    
    • 1
    • 2
    • 3
    • 4
    cd  /soft/nginx
    rpm -ivh --nodeps *.rpm
    
    • 1
    • 2

    建议内网先下载安装包和依赖通过介质拷贝至系统;

    三、NGINX 安装编译

    cd /soft/nginx
    tar -zxvf nginx-1.21.6.tar.gz
    cd nginx-1.21.6 
    ./configure 
    make
    make install
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    注:编译后会在安装目录的同层(/soft/nginx/)生成nginx应用目录,相关配置、启动在此层。而不是在安装目录下一层(/soft/nginx/nginx-1.21.6/)或者使用whereis nginx查看软件目录,如果查询没有反应,以前者为准。
    在这里插入图片描述

    三、NGINX 启动和其他相关命令

    启动nginx:

    cd /soft/nginx/sbin/
    ./nginx
    
    • 1
    • 2

    检查nginx是否启动:

    ps aux | grep nginx
    
    • 1

    在这里插入图片描述
    检测nginx配置文件是否正常 :

    ./nginx -t -c conf/nginx.conf   
    
    • 1

    修改配置后平滑重启:

    ./nginx -s reload -c conf/nginx.conf 
    
    • 1

    执行完当前的任务后再退出:

    ./nginx -s quit 
    
    • 1

    强制终止Nginx:

    ./nginx -s stop 
    
    • 1
  • 相关阅读:
    uCOSii系统的中断管理
    IEEE 754
    Mybatis面经
    第2期:大数据岗位有哪些
    Flink Kafka获取数据写入到MongoDB中 样例
    Nodejs核心模块之Events
    淘宝/天猫API:item_search_shop-获得店铺的所有商品
    [附源码]计算机毕业设计JAVA医药管理系统
    QT页面布局方法大全
    Rust9.1 Object-Oriented Programming Features of Rust
  • 原文地址:https://blog.csdn.net/weixin_42728126/article/details/131684464