nginx基础学习二

1、查看进程号
access.log error.log nginx.pid
[root@localhost logs]# cat nginx.pid
2107
[root@localhost logs]# ps aux|grep nginx
root 2107 0.0 0.0 4996 552 ? Ss 16:03 0:00 nginx: master process ./sbin/nginx
2、命令参数
nginx -t 测试配置是否正确
nginx -s reload,作用:加载最新配置
nginx -s stop 作用:立即停止
nginx -s quit 作用:优雅停止
nginx -s reopen 作用:重新打开日志

你可能感兴趣的:(nginx基础学习二)