Windows平台下:
1.安装
地址:http://nginx.org/en/download.html
这里有三种版本:
Mainline version是开发版,也就是正在研发的最新版
Stable version是稳定版,这个版本bug很少,一般工程中就用这个
Legacy versions是以前发布的稳定版
然后选择一种版本,下载后,解压就可以使用了
2.运行
直接点击nginx.exe就可以运行
或者在命令行进入目录,输入start nginx(之后窗口会消失,这里并不是说运行不成功)
nginx/Windows runs as a standard console application (not a service)
然后输入tasklist /fi "imagename eq nginx.exe",发现有两个进程,这里其中一个是主进程,另一个是工作进程,工作进程可以开很多个,但只有其中一个会工作
映像名称 PID 会话名 会话# 内存使用
========================= ======== ================ =========== ============
nginx.exe 13140 Console 1 7,088 K
nginx.exe 12784 Console 1 7,468 K
3.关闭
nginx -s stop | fast shutdown |
nginx -s quit | graceful shutdown |
有两种关闭方法,看情况使用
4.其他命令
nginx -s reload | changing configuration, starting new worker processes with a new configuration, graceful shutdown of old worker processes |
nginx -s reopen | re-opening log files |
详细介绍:http://nginx.org/en/docs/windows.html