linux如何配置cron任务
时间: 2024-04-30 13:24:57 浏览: 125
在 Linux 系统中,可以通过 crontab 命令来配置定时任务。具体步骤如下:
1. 打开终端并登录到 Linux 系统。
2. 输入命令 crontab -e 来编辑当前用户的定时任务:
```
$ crontab -e
```
3. 在弹出的编辑器中,按照以下格式编写 cron 表达式和命令:
```
* * * * * command
- - - - -
| | | | |
| | | | ----- Day of the week (0 - 7) (Sunday is both 0 and 7)
| | | ------- Month (1 - 12)
| | --------- Day of the month (1 - 31)
| ----------- Hour (0 - 23)
------------- Minute (0 - 59)
```
其中,星号(*)表示任意值,数字表示具体值,逗号(,)表示多个值,减号(-)表示区间值,斜杠(/)表示间隔值。
例如,下面的命令表示每天的凌晨 1 点执行 /home/user/backup.sh 脚本:
```
0 1 * * * /home/user/backup.sh
```
4. 编辑完毕后,保存并退出编辑器即可。
可以使用 crontab -l 命令来查看当前用户的定时任务列表,使用 crontab -r 命令来删除当前用户的所有定时任务。
相关问题
linux cron定时任务
Linux 系统中的 cron 是一种定时任务工具,可以在指定时间自动执行特定的命令或程序。cron 使用 crontab 文件来设置定时任务,crontab 文件中的每一行代表一个任务,格式为:
```
* * * * * command
- - - - -
| | | | |
| | | | ----- Day of week (0 - 7) (Sunday = both 0 and 7)
| | | ------- Month (1 - 12)
| | --------- Day of month (1 - 31)
| ----------- Hour (0 - 23)
------------- Minute (0 - 59)
```
其中,用星号(*)表示任何值。例如,“* * * * * command”表示每分钟都会执行“command”。
通过 crontab -e 命令可以编辑crontab文件并添加或删除定时任务。
cron 服务默认是开启的,如果要关闭或重启 cron 服务,可以使用 service crond start/stop/restart 命令。
linux定时任务cron
Linux 系统中的 cron 是一种定时任务工具,可以在指定时间自动执行特定的命令或程序。cron 使用 crontab 文件来设置定时任务,crontab 文件中的每一行代表一个任务,格式为:
```
* * * * * command
- - - - -
| | | | |
| | | | ----- Day of week (0 - 7) (Sunday = both 0 and 7)
| | | ------- Month (1 - 12)
| | --------- Day of month (1 - 31)
| ----------- Hour (0 - 23)
------------- Minute (0 - 59)
```
其中,用星号(*)表示任何值。例如,“* * * * * command”表示每分钟都会执行“command”。
通过 crontab -e 命令可以编辑crontab文件并添加或删除定时任务。
cron 服务默认是开启的,如果要关闭或重启 cron 服务,可以使用 service crond start/stop/restart 命令。
阅读全文