博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Centos7之Nginx
阅读量:5338 次
发布时间:2019-06-15

本文共 2316 字,大约阅读时间需要 7 分钟。

1、安装

  下载RPM: wget http://nginx.org/download/nginx-1.16.0.tar.gz

  解压:tar -zxf nginx-1.16.0.tar.gz

  安装:

    cd nginx-1.16.0

    ./configure

    make && make install

2、安装成功后nginx的几个默认目录

  执行目录:/usr/sbin/nginx
  模块所在目录:/usr/lib64/nginx/modules
  配置所在目录:/etc/nginx/
  默认站点目录:/usr/share/nginx/html

  主要配置文件:/etc/nginx/nginx.conf 指向:/etc/nginx/conf.d/default.conf

  PID目录:/var/run/nginx.pid
  错误日志:/var/log/nginx/error.log
  访问日志:/var/log/nginx/access.log

 3、查看nginx状态

  输入命令:systemctl status nginx.service

1 [root@N37012 ~]# systemctl status nginx.service 2 ● nginx.service - nginx 3    Loaded: loaded (/usr/lib/systemd/system/nginx.service; enabled; vendor preset: disabled) 4    Active: failed (Result: exit-code) since 日 2019-05-19 16:31:16 CST; 15min ago 5   Process: 23482 ExecStop=/usr/local/nginx/sbin/nginx quit (code=exited, status=1/FAILURE) 6  Main PID: 7158 (code=exited, status=0/SUCCESS) 7  8 5月 19 16:00:29 N37012 systemd[1]: Starting nginx... 9 5月 19 16:00:30 N37012 systemd[1]: Started nginx.10 5月 19 16:31:15 N37012 systemd[1]: Stopping nginx...11 5月 19 16:31:15 N37012 nginx[23482]: nginx: invalid option: "quit"12 5月 19 16:31:16 N37012 systemd[1]: nginx.service: control process exited, code=exited status=113 5月 19 16:31:16 N37012 systemd[1]: Stopped nginx.14 5月 19 16:31:16 N37012 systemd[1]: Unit nginx.service entered failed state.15 5月 19 16:31:16 N37012 systemd[1]: nginx.service failed.16 [root@N37012 ~]#
4、启动、停止、重启命令
  systemctl start nginx.service
  systemctl stop nginx.service
  systemctl reload nginx.service
  systemctl status nginx.service
5、查看nginx的状态
1 [root@N37012 ~]# systemctl status nginx.service  2 ● nginx.service - nginx 3    Loaded: loaded (/usr/lib/systemd/system/nginx.service; enabled; vendor preset: disabled) 4    Active: active (running) since 日 2019-05-19 16:00:30 CST; 30min ago 5  Main PID: 7158 (nginx) 6     Tasks: 2 7    CGroup: /system.slice/nginx.service 8            ├─7158 nginx: master process /usr/local/nginx/sbin/nginx 9            └─7159 nginx: worker process10 11 5月 19 16:00:29 N37012 systemd[1]: Starting nginx...12 5月 19 16:00:30 N37012 systemd[1]: Started nginx.13 [root@N37012 ~]#

6、杀掉进程命令 

  a.相关nginx进程全部杀掉:killall -9 nginx

  b.把PID两个经常杀掉:kill -9 pid1 and kill -9 pid 2

6、查看版本

  输入命令:nginx -V

转载于:https://www.cnblogs.com/061713xlhj/p/10889796.html

你可能感兴趣的文章
egret3D与2D混合开发,画布尺寸不一致的问题
查看>>
struts1和struts2的区别
查看>>
Redis常用命令
查看>>
微软职位内部推荐-Sr. SE - Office incubation
查看>>
C#类与结构体究竟谁快——各种函数调用模式速度评测
查看>>
我到底要选择一种什么样的生活方式,度过这一辈子呢:人生自由与职业发展方向(下)...
查看>>
poj 题目分类
查看>>
windows 安装yaml支持和pytest支持等
查看>>
读书笔记:季羡林关于如何做研究学问的心得
查看>>
面向对象的优点
查看>>
套接口和I/O通信
查看>>
阿里巴巴面试之利用两个int值实现读写锁
查看>>
浅谈性能测试
查看>>
Winform 菜单和工具栏控件
查看>>
CDH版本大数据集群下搭建的Hue详细启动步骤(图文详解)
查看>>
巧用Win+R
查看>>
浅析原生js模仿addclass和removeclass
查看>>
Python中的greenlet包实现并发编程的入门教程
查看>>
java中遍历属性字段及值(常见方法)
查看>>
深入理解jQuery框架-框架结构
查看>>