Python脚本通过cron作业返回IOError运行[错误号2]

时间:2015-07-25 03:14:18

标签: python python-2.7 cron centos6

我正在通过Centos6远程服务器上的cron作业运行Python feedparser脚本(通过SSH连接到服务器)。

在Crontab中,这是我的cron工作:

MAILTO = myemail@company.com
*/10 * * * * /home/local/COMPANY/malvin/SilverChalice_CampusInsiders/SilverChalice_CampusInsiders.py > /home/local/COMPANY/malvin/SilverChalice_CampusInsiders`date +\%Y-\%m-\%d-\%H:\%M:\%S`-cron.log | mailx -s "Feedparser Output" myemail@company.com

但是,我在正在发送的电子邮件中看到此消息,该消息应该只包含脚本的输出:

Null message body; hope that's ok
/usr/lib/python2.7/site-packages/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
  InsecurePlatformWarning
Traceback (most recent call last):
  File "/home/local/COMPANY/malvin/SilverChalice_CampusInsiders/SilverChalice_CampusInsiders.py", line 70, in <module>
    BC_01.createAndIngest(name, vUrl, tags, desc)
  File "/home/local/COMPANY/malvin/SilverChalice_CampusInsiders/BC_01.py", line 69, in createAndIngest
    creds = loadSecret()
  File "/home/local/COMPANY/malvin/SilverChalice_CampusInsiders/BC_01.py", line 17, in loadSecret
    credsFile=open('brightcove_oauth.json')
IOError: [Errno 2] No such file or directory: 'brightcove_oauth.json'

通常情况下,这是一个明智的问题:我的代码必定存在问题。除此之外,当我通过python SilverChalice_CampusInsiders.py

在命令行上运行脚本时,脚本运行得非常好

我在这里做错了什么?为什么Python脚本在通过cron作业运行时“看到”json oauth文件?

1 个答案:

答案 0 :(得分:4)

Cron为作业设置了一个最小的环境(我认为它从主目录运行作业)。

在python脚本中,当你执行类似 -

之类的操作时
open('<filename>')

它检查当前工作目录中的filename,而不是脚本所在的目录。

即使从命令行运行也是如此,如果将目录更改为其他目录(可能是您的主目录),然后使用脚本的绝对路径来运行它,则应该会收到相同的错误。

您可以尝试以下任一选项,而不是依赖当前工作目录是否正确,并且您可以尝试打开以下任一选项 -

  1. 使用要打开的文件的绝对路径,不要使用相对路径。

  2. 或者如果以上不是您的选项,并且您要打开的文件相对于正在运行的脚本存在(例如,目的可以说在同一目录中),那么您可以使用__file__(这给出了脚本位置)和os.path,以便在运行时创建文件的绝对路径,例如 -

    import os.path
    
    fdir = os.path.abspath(os.path.dirname(__file__)) #This would give the absolute path to the directory in which your script exists.
    f = os.path.join(fdir,'<yourfile')
    
  3. 最后f将包含您文件的路径,您可以使用该路径打开文件。