启动

linux:

  1. service nginx start

windows:

  1. start .\nginx.exe

重启

  1. nginx -s reload

  1. systemctl reload nginx.service

终止进程

linux:

  1. ps -ef|grep nginx
  2. pkill -9 nginx

windows:

  1. .\nginx.exe stop

语法检查

配置文件语法不通过会导致 nginx 不能正常启动。所以修改了配置文件后必须先检查 nginx.conf 文件的语法是否正确。

  1. nginx -t -c nginx.conf