mysql crond周期性计划任务的配置格式
时间: 2024-02-15 19:03:04 浏览: 74
Linux VPS 计划任务crond命令的使用方法分享
在 MySQL 中,可以使用 crond 来实现周期性计划任务,其格式为:
```
* * * * * command
- - - - -
| | | | |
| | | | ----- Day of the Week (0 - 6) (Sunday is 0)
| | | ------- Month (1 - 12)
| | --------- Day of the Month (1 - 31)
| ----------- Hour (0 - 23)
------------- Minute (0 - 59)
```
其中,'command' 是要执行的命令或脚本。每个星号('*')表示一个时间单位,可用的时间单位包括:
- Minute(分):0-59
- Hour(时):0-23
- Day of the Month(日):1-31
- Month(月):1-12
- Day of the Week(周):0-6(0 表示周日)
例如,要每天凌晨 1 点执行一个脚本,可以使用以下配置:
```
0 1 * * * /path/to/script.sh
```
该配置表示在每天凌晨 1 点,执行 '/path/to/script.sh' 脚本。
注意,crond 的配置文件通常位于 '/etc/crontab' 或者 '/var/spool/cron/root' 等目录下。如果你不知道该如何编辑 crond 的配置文件,可以使用命令 'crontab -e' 来编辑当前用户的计划任务。
阅读全文