定时器功能:设置任务定时运行。如循环运行某项程序、定期备份数据等。
查看Crond的开启自启动服务是否开启(systemctl is-enabled crond.service)
另一种方式查看systemctl list-unit-files | grep enable
启动命令:systemctl enable crond.service
关闭命令:systemctl disable crond.service
确定Crond开启自启动服务已经开启,可进行下一步

当看到active(running)证明crond.service服务正常开启
开启命令:systemctl start crond.service
关闭命令:systemctl stop crond.service
注:添加之后我们也可以在/var/spool/cron路径下查看
示例:
6、定时器操作命令
重启服务命令:[root@centos6 /]# service crond restart
启动服务命令:[root@centos6 /]# service crond start
停止服务命令:[root@centos6 /]# service crond stop
注:这种定时器是区分用户的,不同的定时器需要切换到相应的用户下启动或停止。
原文:https://www.cnblogs.com/Maggieli/p/12093459.html