nginx关闭/重启/启动的操作方法
关闭
service nginx stop
systemctl stop nginx
启动
service nginx start
systemctl start nginx
重启
service nginx reload
systemctl restart nginx
随系统启动自动运行
systemctl enable nginx
禁止随系统启动自动运行
systemctl disable nginx
知识点扩展:
首先利用配置文件启动nginx。
命令: nginx -c /usr/local/nginx/conf/nginx.conf
重启服务: service nginx restart
2. 快速停止或关闭Nginx:nginx -s stop
3. 正常停止或关闭Nginx:nginx -s quit
4. 配置文件修改重装载命令:nginx -s reload
到此这篇关于nginx关闭/重启/启动的操作方法的文章就介绍到这了,更多相关nginx关闭/重启/启动方法介绍内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
相关文章
Nginx 压缩(gzip、gunzip、gzip_static、send_file)的实现
在Web应用开发中,优化网站速度是一个非常重要的工作,本文主要介绍了Nginx 压缩(gzip、gunzip、gzip_static、send_file)的实现,感兴趣的可以了解一下2024-09-09
使用Nginx + Keepalived 实现高可用 Web 负载均衡笔记(虚拟机)
这篇文章主要介绍了使用Nginx + Keepalived 实现高可用 Web 负载均衡笔记,需要的朋友可以参考下2023-08-08


最新评论