美文网首页
Nginx的各种命令

Nginx的各种命令

作者: wylb868 | 来源:发表于2020-11-24 10:50 被阅读0次

1.启动服务

start nginx
在git中需在nginx前加./ 如:start ./nginx //其他命令一样

2.重新载入配置文件

nginx -s reload

3.停止服务

从容停止服务,这种方法较stop相比就比较温和一些了,需要进程完成当前工作后再停止。
nginx -s quit

立即停止服务,这种方法比较强硬,无论进程是否在工作,都直接停止进程。
nginx -s stop

4.查看端口号

netstat

5.下面为linux系统操作方法

5.1 systemctl命令启动
systemctl start nginx.service

5.2 killall 方法杀死进程,直接杀死进程,在上面无效的情况下使用,态度强硬,简单粗暴!
killall nginx

5.3 重启Nginx服务
systemctl restart nginx.service

5.4 systemctl 停止
systemctl stop nginx.service

5.5 查看启动后记录
ps aux | grep nginx

相关文章

网友评论

      本文标题:Nginx的各种命令

      本文链接:https://www.haomeiwen.com/subject/pshiiktx.html