linux crontabs 使用实例
1、安装
yum install crontabs
2、常用命令
crontab
[-u user] [ -e | -l | -r ]
(default operation is replace, per 1003.2)
-e (edit user's
crontab
)
-l (list user's
crontab
)
-r (delete user's
crontab
)
-i (prompt before deleting user's
crontab
)
-s (selinux context)
/sbin/service
crond start
//
启动服务
/sbin/service
crond stop
//
关闭服务
/sbin/service
crond restart
//
重启服务
/sbin/service
crond reload
//
重新载入配置
3、linux的crontab配置是按用户保存的通过-u指定用户
crontab -e -uroot 打开root用户配置,crontab -e -uwww 打开www用户配置
4、实例
* * * * * flock -xn /tmp/ic_ImportProduct.lock -c "/opt/remi/php72/root/bin/php /data/ic/artisan ImportProduct"
前五个星代表分,时,日,月,周, 为* 则每一分都执行一次 ,“flock -xn /tmp/ic_ImportProduct.lock” 增加一个锁,防止一个定时任务没有执行完成就执行下一次任务 "/opt/remi/php72/root/bin/php /data/ic/artisan ImportProduct",用/opt/remi/php72/root/bin/php 运行脚本 /data/ic/artisan ImportProduct
5、查看定时任务 crontab运行日志
[root@ip-**-31-84-*9* ~]# ll /var/log/cron* -rw------- 1 root root 2263110 May 26 03:57 /var/log/cron -rw------- 1 root root 138034 May 1 03:38 /var/log/cron-20220501 -rw------- 1 root root 1623851 May 8 03:36 /var/log/cron-20220508 -rw------- 1 root root 3957087 May 15 03:46 /var/log/cron-20220515 -rw------- 1 root root 3952643 May 22 03:47 /var/log/cron-20220522