码迷,mamicode.com
首页 > 系统相关 > 详细

linux中crontab工具开启服务

时间:2016-05-25 22:32:04      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:service   linux   服务器   用户   计划   

首先确认服务器是否开启任务计划服务,只有root用户才能对crond服务进行开启和关闭[root@localhost ~]# service crond status
crond (pid  1758) is running...
[root@localhost ~]# service crond stop
Stopping crond:                                            [  OK  ]
[root@localhost ~]# su - hongjie
[hongjie@localhost ~]$ service crond status
crond is stopped
[hongjie@localhost ~]$ su - root
[root@localhost ~]# service crond start
Starting crond:                                            [  OK  ]
[root@localhost ~]# service crond status
crond (pid  2805) is running...
[root@localhost ~]# su - hongjie
[hongjie@localhost ~]$ service crond status
crond (pid  2805) is running...


开启服务后即可写运行脚本,运行脚本需要x执行权


* * * * * [文件绝对路径]

linux中crontab工具开启服务

标签:service   linux   服务器   用户   计划   

原文地址:http://9274590.blog.51cto.com/9264590/1783225

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!