参考资料:http://blog.slogra.com/post-238.html
1. 问题描述
一段数据处理的 shell 程序,在 shell 中手动运行,可以正确执行。但是,把它放在 crontab 列表里,就会报错,提示 "matlab: command not found."。
AutoRefreshData.sh 的部分内容如下:
[[email protected] ~]$ cat /home/She/data/AutoRefreshData.sh#!/bin/bash ... MatlabFile=‘/mnt/L/Data/main4mat.m‘ chmod +x ${MatlabFile} matlab -nodesktop -nosplash -nojvm < ${MatlabFile} 1>running.log 2>running.err &
在终端下,AutoRefreshData.sh 可正确执行:
[[email protected] ~]$ /home/She/data/AutoRefreshData.sh [[email protected] ~]$ cat ~/running.log < M A T L A B (R) > Copyright 1984-2015 The MathWorks, Inc. R2015b (8.6.0.267246) 64-bit (glnxa64) August 20, 2015 For online documentation, see http://www.mathworks.com/supportFor product information, visit www.mathworks.com. >> >> >> >> >> >> >> /mnt/L/Data/matFile/jpl16228.mat>>
[[email protected] ~]$ cat ~/running.err[[email protected] ~]$
将该 shell 脚本添加到 crontab 中:
[[email protected] ~]$ crontab -l# part 2: refresh She data from FTP 08 12 * * * /home/She/data/AutoRefreshData.sh > /dev/null 2>&1
在 crontab 中,运行报错,结果如下:
[[email protected] ~]$ cat ~/running.log[[email protected] ~]$ cat ~/running.err/home/She/data/AutoRefreshData.sh: line 111: matlab: command not found
2. Bug 原因分析与修复
原因分析:crontab 有一个坏毛病, 就是它总是不会缺省的从用户 profile 文件中读取环境变量参数,经常导致在手工执行某个脚本时是成功的,但是到 crontab 中试图让它定期执行时就是会出错。
修复:在脚本文件的开头,强制要求导入环境变量,可保万无一失。
这样的话,脚本的头部一律以下列格式开头:
#!/bin/sh . /etc/profile . ~/.bash_profile
以 AutoRefreshData.sh 为例,它的头部则由
[[email protected] ~]$ cat /home/She/data/AutoRefreshData.sh #!/bin/bash ... MatlabFile=‘/mnt/L/Data/main4mat.m‘ chmod +x ${MatlabFile} matlab -nodesktop -nosplash -nojvm < ${MatlabFile} 1>running.log 2>running.err &
改为:
[[email protected] ~]$ vi /home/She/data/AutoRefreshData.sh #!/bin/sh . /etc/profile . ~/.bash_profile ... MatlabFile=‘/mnt/L/Data/main4mat.m‘ chmod +x ${MatlabFile} matlab -nodesktop -nosplash -nojvm < ${MatlabFile} 1>running.log 2>running.err &
之后,更新 crontab 中的运行时间,立即测试,一切正常,不再报错。
[[email protected] ~]$ cat ~/running.log < M A T L A B (R) > Copyright 1984-2015 The MathWorks, Inc. R2015b (8.6.0.267246) 64-bit (glnxa64) August 20, 2015 For online documentation, see http://www.mathworks.com/support For product information, visit www.mathworks.com. >> >> >> >> >> >> >> /mnt/L/Data/matFile/jpl16228.mat >> [[email protected] ~]$ cat ~/running.err[[email protected] ~]$
Done。
时间: 2024-10-01 04:44:41