Nginx常用命令
找到nginx bin目录:
whereis nginx
直接执行bin
- 使用配置文件启动
nginx
:nginx -c /usr/local/nginx/conf/nginx.conf
- 检查配置文件:
/usr/local/nginx/sbin/nginx -t
- 重新加载:
/usr/local/nginx/sbin/nginx -s reload
- 快速停止:
/usr/local/nginx/sbin/nginx -s stop
- 正常停止或者关闭:
/usr/local/nginx/sbin/nginx -s quit
Systemctl
- 重启:
systemctl restart nginx
- 重载:
systemctl reload nginx
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来源 Bai's Blog!