如何启动定时任务crontab?

crontab 启动 依赖 crontabs包和 crond服务, crond服务使用的crontab定义的命令

因此需要:
service crond start    (有的是service cron start)
或者
/etc/rc.d/init.d/crond start

加入开机自动启动:

chkconfig --level 35 crond on


情况一:正常情况(系统有service命令)

重启服务命令:[root@centos6 /]# service crond restart


启动服务命令:[root@centos6 /]# service crond start

停止服务命令:[root@centos6 /]# service crond stop


情况二:当linux发行的版本没有service这个命令时候,用如下命令进行停止启动:

停止服务:[root@centos6 /]# /etc/init.d/cron空格stop

启动服务:[root@centos6 /]# /etc/init.d/cron空格start


你可能感兴趣的:(crontab,定时任务,❤,Linux)