使用日历创建 cron 作业或安排作业

使用日历创建 cron 作业或安排作业

在我的项目中,我需要在特定时间运行我的脚本。

我的脚本:

1.stop_instance_001.sh
2.change_instance001_m5.2xlarge.sh 
3.start_instance_001.sh

例子:我使用 fullcalendar 网络应用程序来安排我的活动。

2020 年 11 月 6 日

| Event |   Time  |              Script             |
| ----- | ------- | ------------------------------- |
|event1 |  20:00  | stop_instance_001               |
|event2 |  20:05  | change_instance001_m5.2xlarge   |
|event3 |  20:07  | start_instance_001              |
  1. 选择您要运行脚本的日期。
  2. 从下拉列表中选择脚本。
  3. 选择运行脚本的时间。
  4. 节省!

设计完我的日历后,我不知道如何使用 PHP 将这些事件转换为 crontab。 T_T

定时任务:

00 20 * * * /home/ubuntu/stop_instance_001.sh
05 20 * * * /home/ubuntu/change_instance001_m5.2xlarge.sh 
07 20 * * * /home/ubuntu/start_instance_001.sh

请帮我找到解决方案,谢谢。。

相关内容