1、编辑crontab文件
配置文件路径:/etc/crontab
在配置文件中,原本6个段的配置,我们需要在命令前面再加一个用户段
即:分 时 日 月 周 用户 命令
直接添加到最后一行即可
SHELL=/bin/bash PATH=/sbin:/bin:/usr/sbin:/usr/bin MAILTO=root # For details see man 4 crontabs # Example of job definition: # .---------------- minute (0 - 59) # | .------------- hour (0 - 23) # | | .---------- day of month (1 - 31) # | | | .------- month (1 - 12) OR jan,feb,mar,apr ... # | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat # | | | | | # * * * * * user-name command to be executed *1 * * * * root sh /data/3Ddata/3Ddata2.sh >> /data/3Ddata/logs/lwy-crontab.log &
2、重启cron(每次改动crontab文件后,都需重启crond服务)
# 重启服务 systemctl restart crond # 查看服务状态 systemctl status crond
3、检查定时任务执行情况
cd /var/log tail -f cron
参考:https://www.cnblogs.com/mtima/archive/2013/03/05/2944457.html
标签:bin,配置文件,CentOS,重启,crontab,Linux,定时,crond From: https://www.cnblogs.com/caesar-the-great/p/17041393.html