我正在尝试设置一个主厨配方,让我的网站运行,一切似乎都工作正常,除了uWSGI,它给了我以下错误:
@H_502_6@*** has_emperor mode detected (fd: 6) *** [uWSGI] getting INI configuration from app-cms.ini removed uwsgi instance app-cms.ini
不再这样说了:
@H_502_6@open("/var/www/app-cms/logs/uwsgi.log"): Permission denied [utils.c line 246]
@H_502_6@*** Starting uWSGI 1.0.3-debian (64bit) on [Thu Feb 6 12:00:43 2014] *** compiled with version: 4.6.3 on 17 July 2012 02:26:54 current working directory: /etc/uwsgi/apps-enabled writing pidfile to /var/www/ediflo-cms/run/ediflo-cms.pid detected binary path: /usr/bin/uwsgi-core setgid() to 33 setuid() to 33 chdir(): Permission denied [uwsgi.c line 1723] chdir(): Permission denied [uwsgi.c line 975]
我不确定它在尝试chdir()的位置.
我在emperor模式下启动uWSGI,并使用以下upstart配置文件使用/ etc / uwsgi / apps-enabled / fori文件:
@H_502_6@description "uWSGI" start on runlevel [2345] stop on runlevel [06] respawn exec uwsgi --emperor /etc/uwsgi/apps-enabled --uid uwsgi --gid www-data --logto /var/log/uwsgi/uwsgi.log
这是我的uWSGI app配置:
@H_502_6@[uwsgi] ; define variables to use in this script ; process name for easy identification in top project = app-cms base_dir = /var/www/app-cms chdir = %(base_dir) pythonpath = %(base_dir)/env/bin uid = www-data gid = www-data procname = %(project) ; This value needs to be tuned workers = 4 ; Create pid file for easier process management pidfile = %(base_dir)/run/%(project).pid ; Specify your app here module = %(project)-wsgi:application log-reopen = true logto = %(base_dir)/logs/uwsgi.log chmod-socket = 660 vacuum = True enable-threads = True ; unix socket socket = /tmp/app-cms-server.sock ; Enable stats stats = /tmp/app-cms-stats.sock
最佳答案