如何用简单的命令重启nginx
当VPS经常出现502错误的时候,我们就需要重启nginx了,但是网上搜了一些启动脚步发现都是非常繁琐的,有没有简单的命令可以重启nginx吗?现在我们就去如何用简单的命令重启nginx吧。
但研究了一下nginx帮助后发现,有-s参数可对nginx服务进行管理:
# /usr/local/nginx/sbin/nginx -h
nginx version: nginx/0.7.63
Usage: nginx [-?hvVt] [-s signal] [-c filename] [-p prefix] [-g directives]
Options:
-?,-h : this help
-v : show version and exit
-V : show version and configure options then exit
-t : test configuration and exit
-s signal : send signal to a master process: stop, quit, reopen, reload
-p prefix : set prefix path (default: /usr/local/nginx/)
-c filename : set configuration file (default: conf/nginx.conf)
-g directives : set global directives out of configuration file
于是我执行
# /usr/local/nginx/sbin/nginx -s reload
nginx已经重启成功
用root权限
#killall nginx
#nginx
其它相关命令:
1.显示nginx进行id
#ps -aux | grep nginx
2.结果nginx的master进行pid
#kill -HUP 635
3.重启ngnix
#nginx
以上就是如何用简单的命令重启nginx的内容,希望对大家重启nginx有所帮助,如果有大家有疑问也可以留言交流,谢谢大家对爱站技术频道的支持。
上一篇:文件上传后无法管理怎么办
下一篇:如何设置不限连接数