最近部署了nginx-1.18版本,常用命令记录如下。
1.启动nginx
C:\java\nginx-1.18.0> start nginx
或
C:\java\nginx-1.18.0> nginx.exe
2.停止nginx
C:\java\nginx-1.18.0> nginx.exe -s stop
或
C:\java\nginx-1.18.0> nginx.exe -s quit
注:stop是快速停止nginx,可能并不保存相关信息;quit是完整有序的停止nginx,并保存相关信息。
3.重载/重启ginx
C:\java\nginx-1.18.0> nginx.exe -s reload
当配置信息修改,需要重新载入这些配置时使用此命令。
4、重新打开日志文件:
C:\java\nginx-1.18.0> nginx.exe -s reopen
5.查看Nginx版本:
C:\java\nginx-1.18.0> nginx -v
6.强制停用
第一步:查询进程
C:\java\nginx-1.18.0> tasklist | findstr nginx
第二步:杀掉进程(pid是进程号)
C:\java\nginx-1.18.0> tskill [pid]
或者
C:\java\nginx-1.18.0> taskkill /f /pid [pid]
[root@localhost ~]# nginx -V
[root@localhost ~]# ps -ef | grep nginx
[root@localhost ~]# /usr/local/nginx/sbin/nginx
(/usr/local/nginx 是nginxde 安装路径)
[root@localhost ~]# /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
(stop表示立即停止nginx,不保存相关信息)
[root@localhost ~]# nginx -s stop
(quit表示立即停止nginx,并保存相关信息)
[root@localhost ~]# nginx -s quit
[root@localhost ~]# nginx -s reload
8.重新打开日志文件
[root@localhost ~]# nginx -s reopen
[root@localhost ~]# systemctl status nginx.service
[root@localhost ~]# systemctl start nginx.service
[root@localhost ~]# systemctl stop nginx.service
(修改配置文件后使用这个)
[root@localhost ~]# systemctl reload nginx.service