linuxcrontab无效解决办法
Posted 匡子语
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linuxcrontab无效解决办法相关的知识,希望对你有一定的参考价值。
参考来源:http://www.tennfy.com/3088.html
问题:
我在crontab中添加了一条定时任务
0 8 * * * sh test.sh
出乎意料的是,该定时任务并没有执行。可是我直接在shell中手动执行是没有问题的。
原因:
缺少环境变量导致。在shell中执行时是能够找到环境变量的,但是在crontab中,它是不会自己导入环境变量的,需要我们指定。并将所有路径都写成绝对路径。
解决:
0 8 * * * . /etc/profile; /bin/sh /home/abc/test.sh
前面 . /etc/profile 就是导入环境变量
以上是关于linuxcrontab无效解决办法的主要内容,如果未能解决你的问题,请参考以下文章
django.core.exceptions.ImproperlyConfigured: Requested setting DEFAULT_INDEX_TABLESPACE的解决办法(转)(代码片段
django.core.exceptions.ImproperlyConfigured: Requested setting DEFAULT_INDEX_TABLESPACE的解决办法(转)(代码片段
svn报错cleanup failed–previous operation has not finished; run cleanup if it was interrupted的解决办法(代码片段
NDK: ant 错误 [javah] Exception in thread "main" java.lang.NullPointerException 多种解决办法(代码片段