nginx怎么关闭、重启、和启动
关闭
service <a style='color:#f60; text-decoration:underline;' href=https://www.php.cn/faq/"https://www.php.cn/zt/16000.html" target="_blank">nginx</a> 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
1. 快速停止或关闭Nginx:nginx -s stop
2. 正常停止或关闭Nginx:nginx -s quit
3. 配置文件修改重装载命令:nginx -s reload
以上就是nginx怎么关闭、重启、和启动的详细内容,更多请关注php中文网其它相关文章!