存档

文章标签 ‘crontab’

crontab不执行问题

2014年11月11日 3 条评论

使用crontab -e设置了一条定时作业 45 * * * * cmd 每小时第45分钟执行一次cmd命令,cmd是一个备份工作。 手工执行能够运行,可是crontab定时作业没效果。 排错方法: 1.检查文件具有可执行权限 chmod a+x 2.shell下直接执行用的是应用账户,账户登录时会读入环境变量,把如下内容放到脚本的最开始位置 if [ -f ~/.bash_profile ]; then . ~/.bash_profile fi 1234 if [ -f ~/.bash_profile ];then  . ~/.bash_profilefi ...

分类: linux 标签: ,