美文网首页
Nginx常用方法

Nginx常用方法

作者: iien2121 | 来源:发表于2024-04-17 14:46 被阅读0次
    ./nginx -v #查看nginx 版本
    ./nginx  #启动命令
    ./nginx -s stop #关闭命令
    ./nginx -s reload #重新加载命令
    ./nginx -p `pwd`/ -c conf/nginx.conf #指定配置文件启动
    ./nginx -p `pwd`/ -c conf/nginx.conf -s quit  #nginx指定配置文件的,停止时也需指定参数
    
    #查看nginx 监听了哪些端口
    ps -ef  | grep nginx
    netstat -anp | grep ${pid} # pid 为上面查询出来的nginx进程号
    
    
    tar -zxvf nginx-package.tar.gz -C /usr解压到指定目录
    

    相关文章

      网友评论

          本文标题:Nginx常用方法

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