centos 执行定时任务
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos 执行定时任务相关的知识,希望对你有一定的参考价值。
参考技术A yum -y updateyum -y install cronie yum-cron
//-------------------
crontab任务配置基本格式:
b、重启crond
systemctl reload crond
systemctl restart crond
c、查看当前用户定时任务
crontab -l
d、通过日志查看是否生效
tail -f /logs/cron-cc.log
//---------------------
crontab设置的最小时间为每分钟,实现以秒为单位进行定时任务执行。
*/1 * * * * sh /root/shell/aa.sh
*/1 * * * * sleep 10 && sh /root/shell/aa.sh
*/1 * * * * sleep 20 && sh /root/shell/aa.sh
*/1 * * * * sleep 30 && sh /root/shell/aa.sh
*/1 * * * * sleep 40 && sh /root/shell/aa.sh
*/1 * * * * sleep 50 && sh /root/shell/aa.sh
注意:aa.sh为执行脚本
*/1 * * * * sh /root/shell/aa.sh
*/1 * * * * sleep 20 && sh /root/shell/aa.sh
*/1 * * * * sleep 40 && sh /root/shell/aa.sh
注意:aa.sh为执行脚本
*/5 * * * * sh /root/shell/echo.sh
// 每天凌晨1点执行
0 1 * * * /home/testuser/test.sh
//-----------------------------------------------
crontab -l
调用/var/spool/cron/目录下相关用户的定时任务信息
查看定时任务日志
tail -f /var/log/cron
systemctl status crond.service
systemctl start crond.service
systemctl stop crond.service
systemctl restart crond.service
systemctl reload crond.service
把cron服务加入linux开机自启动
systemctl enable crond.service
systemctl is-enabled crond.service
ps -ef |grep crond|grep -v grep
//---------------------------------------------
注意:
路径问题
有些脚本涉及到文件操作,文件路径不正确也会导致脚本无法正常执行,建议使用绝对路径,或者在执行脚本时,先进入该脚本的路径下,在执行。Crontab的command配置如下:
*/1 * * * * cd /root/shell && ./cron.sh
1、执行env指令得到当前的用户环境变量。
2、将PATH环境变量添加到crontab的第一行,如下图所示。
以上是关于centos 执行定时任务的主要内容,如果未能解决你的问题,请参考以下文章
小知识点Centos 自动任务,定时执行 Python 脚本