大家好,又见面了,我是你们的朋友全栈君。
nginx -s reload :修改配置后重新加载生效
nginx -s reopen :重新打开日志文件 nginx -t -c /path/to/nginx.conf 测试nginx配置文件是否正确
关闭nginx: nginx -s stop :快速停止nginx quit :完整有序的停止nginx
其他的停止nginx 方式:
ps -ef | grep nginx
kill -QUIT 主进程号 :从容停止Nginx kill -TERM 主进程号 :快速停止Nginx pkill -9 nginx :强制停止Nginx
启动nginx: nginx -c /path/to/nginx.conf
平滑重启nginx: kill -HUP 主进程号
分类: Freebsd
启动代码格式:nginx安装目录地址 -c nginx配置文件地址
例如:
[root@LinuxServer sbin]# /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
nginx的停止有三种方式:
1、查看进程号
[root@LinuxServer ~]# ps -ef|grep nginx
2、杀死进程
[root@LinuxServer ~]# kill -QUIT 2072
1、查看进程号
[root@LinuxServer ~]# ps -ef|grep nginx
2、杀死进程
[root@LinuxServer ~]# kill -TERM 2132
或 [root@LinuxServer ~]# kill -INT 2132
[root@LinuxServer ~]# pkill -9 nginx
看到如下显示nginx.conf syntax is ok
nginx.conf test is successful
说明配置文件正确!
启动: cd /usr/local/nginx/sbin ./nginx nginx服务启动后默认的进程号会放在/usr/local/nginx/logs/nginx.pid文件 cat nginx.pid 查看进程号
关闭: kill -TERM pid 快速停止服务 kill -QUIT pid 平缓停止服务 kill -9 pid 强制停止服务
重启: cd /usr/local/nginx ./nginx -HUP pid ./nginx -s reload
另外一些常见的命令: ./nginx -h 查看nginx所有的命令参数 Options: -?,-h : this help -v : show version and exit -V : show version and configure options then exit -t : test configuration and exit -T : test configuration, dump it and exit -q : suppress non-error messages during configuration testing -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
./nginx -v 显示nginx的版本号 ./nginx -V 显示nginx的版本号和编译信息 ./nginx -t 检查nginx配置文件的正确性 ./nginx -t 检查nginx配置文件的正确定及配置文件的详细配置内容 ./nginx -s 向主进程发送信号,如:./nginx -s reload 配置文件变化后重新加载配置文件并重启nginx服务 ./nginx -p 设置nginx的安装路径 ./nginx -c 设置nginx配置文件的路径
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/129148.html原文链接:https://javaforall.cn