search

Home  >  Q&A  >  body text

bash - Crontab 中自动执行后没有生效

使用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梦2805 days ago857

reply all(5)I'll reply

  • 过去多啦不再A梦

    过去多啦不再A梦2017-04-24 16:01:00

    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.

    reply
    0
  • 習慣沉默

    習慣沉默2017-04-24 16:01:00

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

    cd /home/username
    . .profile
    

    reply
    0
  • PHPz

    PHPz2017-04-24 16:01:00

    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.

    reply
    0
  • ringa_lee

    ringa_lee2017-04-24 16:01:00

    * * * * /bin/bash -l -c ' ~/.script.sh'
    
    这个时间设置错了呀。
    

    reply
    0
  • PHP中文网

    PHP中文网2017-04-24 16:01:00

    Could it be a file permission issue?

    reply
    0
  • Cancelreply