我现在在一个实时网站上运行 nginx,但我需要重新编译它以添加一些额外的功能。我使用的命令是。
make clean
./configure -- BLA BLA BLA
make
make install
只是为了确认,我不需要停止 nginx,直到我运行' make install
'对吗?“make”命令花费的时间最长,我只想 100% 确定我不需要尽快停止 Nginx。
所以要确认一下,这实际上意味着只有一两秒钟的停机时间。
make clean
./configure -- BLA BLA BLA
make
/etc/init.d/nginx stop
make install
/etc/init.d/nginx start