当前位置:主页 > 服务器 > Nginx >

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

时间:2021-01-13 09:51:15 | 栏目: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

您可能感兴趣的文章:

相关文章