nginx: [error] OpenEvent(“Globalngx_stop_15632“) failed (2: The system cannot find the file specified)
Globalngx_stop_15632 后面是PID,变化的。
错误 原因为 nginx 没有启动..
这是因为你的nginx还没有启动,所以报错的。
启动nginx:
nginx
start nginx
立即停止nginx:
nginx -s stop
平缓停止nginx(已有请求不会意外停止):
nginx -s quit
重新加载配置文件:
nginx -s reload