crontab定时任务
Linux的crond定时任务是周期性执行任务的守护进程。
-
安装
yum -y install crontab
-
启动crond服务
service crond start
查看状态service crond status
-
使用
crontab -e
进行定时任务的编辑
格式:分 时 日 月 周 [用户] command
这里我写入0 * * * * /root/anaconda3/bin/python3 /root/*.py
, 表示每天每小时0分时自动执行python3 /root/*.py
命令。
注意: 设置好运行命令的绝对路径和被执行文件的绝对路径,因为crontab本身不具备平时运行的环境变量。 -
使用
crontab -l
查看设置好的定时任务