CentOS设置定时任务

CentOS设置定时任务

  1. 安装定时任务:cron
yum install -y cronie
  1. 启动
systemctl start crond.service
  1. 设置开机自启动
systemctl enable crond.service
  1. 检查定时任务状态
systemctl status crond.service
  1. 编辑定时任务
crontab -e
  1. 定时任务配置。例如:在每天凌晨2点执行del.sh脚本
0 2 * * * /data/applogs/del.sh
  1. 定时任务编辑后保存

  2. 重启定时任务

systemctl restart crond.service

你可能感兴趣的:(centos,linux,运维)