linux定时任务crontab

CentOS:

安装:yum install -y cronie

1、直接编辑配置文件
配置文件路径:/etc/crontab

2、使用crontab -e 命令编辑

3、直接编辑目标文件
进入/var/spool/cron/

systemctl start crond         启动服务
systemctl stop crond         停止服务
systemctl restart crond       重启服务
systemctl reload crond         重载配置文件
systemctl status crond         查看状态

crontab常用命令
crontab -u 设定某个用户的cron服务
crontab -l 显示crontab文件(显示已设置的定时任务)
crontab -e 编辑crontab文件(编辑定时任务)
crontab -r 删除crontab文件(删除定时任务)
crontab -i 删除crontab文件提醒用户(删除定时任务)