欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

nginx关闭/重启/启动的操作方法

程序员文章站 2022-06-25 08:50:56
关闭service nginx stopsystemctl stop nginx启动service nginx startsystemctl start nginx重启service nginx re...

关闭

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 基本操作