主管 - 程序的目录选项不起作用

时间:2015-12-07 07:25:36

标签: python supervisord

我想由主管执行python脚本。

我在supervisord.conf中设置了目录选项 我在命令选项中使用了相对路径。

[supervisord]
http_port=/var/tmp/supervisor.sock ; (default is to run a UNIX domain socket server)
logfile=/var/log/supervisor/supervisord.log ; (main log file;default $CWD/supervisord.log)
logfile_maxbytes=50MB       ; (max main logfile bytes b4 rotation;default 50MB)
logfile_backups=10          ; (num of main logfile rotation backups;default 10)
loglevel=info               ; (logging level;default info; others: debug,warn)
pidfile=/var/run/supervisord.pid ; (supervisord pidfile;default supervisord.pid)
nodaemon=false              ; (start in foreground if true;default false)
minfds=1024                 ; (min. avail startup file descriptors;default 1024)
minprocs=200                ; (min. avail process descriptors;default 200)
directory=/root             ; (default is not to cd during start)

[supervisorctl]
serverurl=unix:///var/tmp/supervisor.sock ; use a unix:// URL  for a unix socket

[program:test]
directory=/root/test
command=python ./test.py
autostart=true

在python脚本中,我使用了这样的相对路径。

textfile = open('./textfile')

我可以在python ./test.py目录上通过/root/test成功执行此python脚本。 但是当我开始担任主管时,我收到了这个错误。

python: can't open file './test.py': [Errno 2] No such file or directory

接下来,我使用了supervisor.conf中的绝对路径命令选项。

[program:test]
directory=/root/test
command=python /root/test/test.py

我收到了这个错误。

Traceback (most recent call last):
  File "/root/test/test.py", line 6, in <module>
    textfile = open('./textfile')
IOError: [Errno 2] No such file or directory: './textfile'

是否无法在执行脚本的位置设置目录?

1 个答案:

答案 0 :(得分:0)

除了在textfile中使用test.py的绝对路径之外,您可以在调用test.py之前将以下内容添加到textfile = open('./textfile'),将当前工作目录更改为脚本的目录。 }:

import os

abspath = os.path.abspath(__file__)
dname = os.path.dirname(abspath)
os.chdir(dname)

请参阅python: Change the scripts working directory to the script's own directory