我有一个使用supervisor在虚拟环境中运行的django应用程序。主管由root
运行,应用程序由用户ubuntu
运行。
我想检查postgres中是否存在数据库。我的函数在普通的python shell(Repl)中工作得很好,甚至当我使用python migrate.py runserver
甚至在django shell中运行我的应用程序时。
然而,只要我使用supervisor启动应用程序并执行代码块,我就会得到以下异常 -
Exception Type: OSError
Exception Value:[Errno 2] No such file or directory
这是
的功能def database_exists(database_name):
try:
db= "anydbname"
c1 = "psql -U postgres -lqt"
c2 = "cut -d | -f 1"
c3 = "grep -w " + db
ps1 = subprocess.Popen(c1.split(),stdout=subprocess.PIPE)
ps2 = subprocess.Popen(c2.split(),stdin=ps1.stdout, stdout=subprocess.PIPE)
ps3 = subprocess.Popen(c3.split(),stdin=ps2.stdout , stdout=subprocess.PIPE)
result = ps3.communicate()[0] # if empty , db not found
result = result.strip()
if result == "" :
return False
else :
return True
except Exception, e:
raise e
return False, str(e)
我无法理解它想要找到的确切目录或文件是什么。是否存在任何类型的权限问题?但即使是正常的shell也是使用ubuntu
用户运行的,所以似乎不是权限错误。如何调试在主管中运行时找不到哪个文件?我在主管中添加了日志,但它只显示<request url > HTTP/1.0" 500
所以没有关于它的线索。
这是主管配置
[program:myprog]
environment=PATH="/home/ubuntu/.virtualenvs/myvirtualenv/bin"
command=python /var/www/myapp/manage.py rungevent 127.0.0.1:8010 250
directory=/var/www/myapp
autostart=true
autorestart=true
redirect_stderr=True
killasgroup=true
stopasgroup=true
user=ubuntu
stdout_logfile = /var/log/supervisor/myapp.log
stderr_logfile = /var/log/supervisor/myapp-err.log
答案 0 :(得分:1)
您不需要如此复杂的方式来测试数据库的存在。试试这个:
import psycopg2
def database_exists(database_name):
con = None
res = None
try:
con = psycopg2.connect(database="test", user="test", password="abcd", host="127.0.0.1") #It's better to get the parameters from settings
cur = con.cursor()
cur.execute("SELECT exists(SELECT 1 from pg_catalog.pg_database where datname = %s)", (database_name,))
res = cur.fetchone()[0]
except psycopg2.DatabaseError as e:
res = False
finally:
if con:
con.close()
return res
答案 1 :(得分:0)
问题出在supervisor配置上。它试图找到psql
并没有获得它的路径。原因是主管conf中的错误路径变量。这是正确的设置,效果很好。
更改:删除PATH
并指定虚拟环境的python的完整可执行路径。
[program:myprog]
command=/home/ubuntu/.virtualenvs/myvirtualenv/bin/python /var/www/myapp/manage.py rungevent 127.0.0.1:8010 250
directory=/var/www/myapp
autostart=true
autorestart=true
redirect_stderr=True
killasgroup=true
stopasgroup=true
user=ubuntu
stdout_logfile = /var/log/supervisor/myapp.log
stderr_logfile = /var/log/supervisor/myapp-err.log