zoukankan      html  css  js  c++  java
  • Nginx常用命令

    1、查看当前运行的配置文件 

    [root@syjmw-app-13 ~]# netstat -anop | grep 0.0.0.0:80
    tcp        0      0 0.0.0.0:80                  0.0.0.0:*                   LISTEN      16463/nginx         off (0.00/0/0)
    tcp        0      0 0.0.0.0:8001                0.0.0.0:*                   LISTEN      7815/java           off (0.00/0/0)
    [root@syjmw-app-13 ~]# ll /proc/16463/exe
    lrwxrwxrwx. 1 root root 0 4月  26 04:10 /proc/16463/exe -> /hnisi/local/nginx/nginx
    [root@syjmw-app-13 ~]# /hnisi/local/nginx/nginx -t
    nginx: the configuration file /hnisi/local/nginx/nginx.conf syntax is ok
    nginx: configuration file /hnisi/local/nginx/nginx.conf test is successful

     2、查看当前运行nginx的进程号

    [root@syjmw-app-13 ~]# ps -ef | grep nginx
    root     16463     1  0 Apr25 ?        00:00:00 nginx: master process ./nginx
    root     20172 19460  0 19:12 pts/0    00:00:00 grep nginx
    nobody   24161 16463  0 Apr25 ?        00:00:18 nginx: worker process
    nobody   24162 16463  0 Apr25 ?        00:00:24 nginx: worker process

    3、nginx启动、重启、停止命令

    从容地重启:kill -HUP pid
    启动nginx:./nginx
    重启nginx:./nginx -s reload
    停止nginx:./nginx -s stop

    4、查出nginx的PID->通过PID查出端口号

    [root@syjmw-app-13 ~]# ps -ef | grep nginx
    root     16463     1  0 Apr25 ?        00:00:00 nginx: master process ./nginx
    root     20827 19460  0 19:33 pts/0    00:00:00 grep nginx
    nobody   24161 16463  0 Apr25 ?        00:00:18 nginx: worker process
    nobody   24162 16463  0 Apr25 ?        00:00:24 nginx: worker process
    [root@syjmw-app-13 ~]# netstat -antup | grep 16463
    tcp        0      0 0.0.0.0:80                  0.0.0.0:*                   LISTEN      16463/nginx        

  • 相关阅读:
    DOM操作 append prependTo after before
    Vue(2)- v-model、局部组件和全局组件、父子组件传值、平行组件传值
    Vue(1)- es6的语法、vue的基本语法、vue应用示例,vue基础语法(转)
    Linux环境下虚拟环境virtualenv安装和使用(转)
    REST、DRF(View源码解读、APIView源码解读)
    超哥的 LINUX 入门大纲
    redis入门
    CRM总结
    如何搭建一个vue项目(完整步骤)
    DRF 视图
  • 原文地址:https://www.cnblogs.com/boazy/p/6759923.html
Copyright © 2011-2022 走看看