1.查看系统是否开启了crontab
如果是disable的那么就开启
systemctl enable crond.service
关闭的话
systemctl disable crond.service
2.查看状态
systemctl status crond.service
3.启动定时
systemctl start crond.service
4.重启
systemctl restart crond.service
5.重载
systemctl reload crond.service
6.停止
systemctl stop crond.service
使用demo实例。
先创建需要定时启动的脚本 crontest.cron
将脚本加入到定时计划中
crontab crontest.cron
然后可以查看定时计划table内容
crontab -l
最后启动cronb即可
systemctl start cronb.service
加入到crontab的定时计划如果要删除的话可以使用crontab -e对文件进行编辑删除保存即可