赞
踩
1、安装cron工具:
root@ubuntu-14:~# apt-getinstall cron
2、开启定时任务:crontab –e
定时任务语句格式为:执行周期+命令。
周期有5个域,分别是分钟,小时,日(day of month),月(month of year),周几(day of week)。每个域不加限制任意的话用*,整体格式为:
* * * * * user command
分 时 日 月 周 用户 命令
我的脚本是 /root/1.py
执行环境为 /usr/bin/python3.5
每两分钟运行一次
则语句为:
*/2 * * * * /usr/bin/python3.5/root/1.py &>> /root/auto.log
3、写完后重启cron 服务
root@ubuntu-14:~# servicecron start
4、其他命令:
重启cron 服务:
service cron restart
检查cron服务的状态:
root@ubuntu-14:~# servicecron status
service cron start //启动服务
service cron stop //关闭服务
service cron restart //重启服务
service cron reload //重新载入配置
service cron status //查看crontab服务状态
crontab –l
5、例子
每天9点运行一次语句为:
0 9 * * * /usr/bin/python3 /home/xiaofeng/cleanroom.py
6、常用的周期格式
每五分钟执行 */5 * * * *
每小时执行 0 * * * *
每天执行 0 0 * * *
每周执行 0 0 * * 0
每月执行 0 0 1 * *
每年执行 0 0 1 1 *
每分钟执行一次 * * * * * user command
每隔2小时执行一次**/2 ** * user command (/表示频率)
每天8:30分执行一次308 * * * user command
每小时的30和50分各执行一次 30,50 * * * * user command(,表示并列)
每个月的3号到6号的8:30执行一次 30 8 3-6 * * user command (-表示范围)
每个星期一的 8:30 执行一次 30 8 * * 1 user command (周的范围为0-7,0和7代表周日)Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。