bash - Crontab 中自动执行后没有生效
过去多啦不再A梦
过去多啦不再A梦 2017-04-24 15:59:00
0
5
842

使用crontab 添加一个定时任务

* * * * /bin/bash -l -c ' ~/.script.sh'

这个脚本的作用是统计一些数据并生成报表文件.

这个脚本每分钟执行一次,但是实际操作中crontab并没有像预期的那样生成报表文件.

然而当我手动执行这个命令时 "~/.script.sh" 生成文件并退出.

有两个疑问:

1: 为什么crontab 没有执行我的脚本. 查看了crontab 日志(/var/log/crond)输出: May 5 20:36:01 localhost CROND[27260]: (ernest) CMD (/bin/bash -l -c '~/script.sh') 没有发现任何异常.

2: 会不会是我执行脚本的环境 不一样呢? 测试了一下 "* * * * * /bin/bash -l -c 'source ~/.bash_profile && ~/.script.sh'" 也不行.

各位大牛们有没有遇到和我一样的问题呢?

过去多啦不再A梦
过去多啦不再A梦

reply all(5)
过去多啦不再A梦

Manually running the script takes effect, but the most common reasons why crontab does not take effect are: The commands in your script do not use absolute paths.

習慣沉默

Try using absolute path. Because~对不同的用户会解释成不同的$HOME.
Usually add script.sh at the beginning of

cd /home/username
. .profile
PHPzhong

If you create the crontab command with sudo crontab -e, then the executing user is root, and the ~ here will also be parsed as /root If you're not using sudo, that should be fine.

左手右手慢动作
* * * * /bin/bash -l -c ' ~/.script.sh'

这个时间设置错了呀。
Ty80

Could it be a file permission issue?

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template