发布网友 发布时间:2022-04-20 10:59
共8个回答
热心网友 时间:2022-04-12 21:13
1、连接上相应的linux主机,进入到等待输入shell指令的linux命令行状态下。
2、在linux命令行下输入shell指令:/etc/init.d/nginx reload。
3、最后,按下回车键执行shell指令,此时会看到nginx重新加载了配置文件。
热心网友 时间:2022-04-12 22:31
进入 nginx 的 sbin 目录:
[root@localhost sbin]# pwd然后 reload 一下就可以了:
[root@localhost sbin]# ./nginx -s reload
热心网友 时间:2022-04-13 00:05
nginx reload的启动文件在reload的过程中不会改变 如果 -c conf/nginx2.conf reload的还是 conf/nginx2.conf 所以你修改 conf/nginx.conf是没有效果的。 这个时候只能stop,然后重新启动nginx,才能变更为nginx.conf热心网友 时间:2022-04-13 01:57
步骤如下热心网友 时间:2022-04-13 04:05
重新加载nginx配置文件: nginx -s reload
重启nginx : 源安装可以 service nginx restart
热心网友 时间:2022-04-13 06:29
改变配置想让它生效而不停止服务,如下两种方式都可以:热心网友 时间:2022-04-13 09:11
/usr/nginx/sbin/nginx -s reload热心网友 时间:2022-04-13 12:09
重启nginx服务