如何停止 apache2 服务

如何停止 apache2 服务

我需要在备份期间停止 apache2 服务 3 小时。我该如何通过crontab或类似方式做到这一点...

我尝试使用 crontab:

15 14 * * * service apache2 stop

但什么也没有发生。

有什么建议吗?

答案1

一种方法是在终端的根目录中执行:

service apache2 stop && backup_software && service apache2 start

相关内容