十年网站开发经验 + 多家企业客户 + 靠谱的建站团队
量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决
Nginx 是一款面向性能设计的 HTTP 服务器,相较于 Apache、lighttpd 具有占有内存少,稳定性高等优势,本篇文章重点为大家讲解一下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
快速停止或关闭Nginx:nginx -s stop
正常停止或关闭Nginx:nginx -s quit
配置文件修改重装载命令:nginx -s reload