关闭
service nginx stopsystemctl stop nginx启动
service nginx startsystemctl start nginx重启
service nginx reloadsystemctl 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