当前位置: 技术问答>linux和unix
crontab运行不了
来源: 互联网 发布时间:2017-01-20
本文导语: 出现如下信息,请问是啥问题啊? [root@localhost /]# 30 21 * * * /usr/local/etc/rc.d/lighttpd restart bash: 30: command not found | 这个是用crontab -e命令然后再输入你这里写的东西,再保存退出,不是让你直接这...
出现如下信息,请问是啥问题啊?
[root@localhost /]# 30 21 * * * /usr/local/etc/rc.d/lighttpd restart
bash: 30: command not found
[root@localhost /]# 30 21 * * * /usr/local/etc/rc.d/lighttpd restart
bash: 30: command not found
|
这个是用crontab -e命令然后再输入你这里写的东西,再保存退出,不是让你直接这么运行的。
|
* * * * * echo "abc" >> /tmp/test.log
|
你设置的第一个分钟数参数离当前时间2分钟以上,crontab最短是每分钟检查一次的,另外分钟数不要设置00这样的可能不正确的值。
再看看服务crond服务是否在运行
[root@RHEL6A scripts]# service crond status
crond 已停
[root@RHEL6A scripts]# service crond start
正在启动 crond: [确定]
再看看服务crond服务是否在运行
[root@RHEL6A scripts]# service crond status
crond 已停
[root@RHEL6A scripts]# service crond start
正在启动 crond: [确定]