我正在尝试在开发环境中午餐主管(3.3.3),但我得到了:
http://127.0.0.1:9001 refused connection
通过主管我需要在gunicorn午餐并记忆。这两个安装在python虚拟环境中。我已经通过apt-get install安装了主管。
所以在 workon my_virtual_environment之后,我尝试:
supervisorctl status
或
supervisorctl start sparc2:*
我的supervisor.conf文件如下:
[supervisord]
logfile = supervisord.log
logfile_maxbytes = 100MB
logfile_backups=10
loglevel = info
user=vagrant
nodaemon=false
[inet_http_server]
port=127.0.0.1:9001 ;
[rpcinterface:supervisor]
supervisor.rpcinterface_factory =
supervisor.rpcinterface:make_main_rpcinterface
[supervisorctl]
serverurl=http://127.0.0.1:9001 ;
[program:gunicorn]
command=/usr/local/bin/gunicorn sparc2.wsgi -c gunicorn.conf.py
autostart=true
autorestart=true
redirect_stderr=true
stdout_logfile=gunicorn_stdout.log
[program:memcached]
command=/usr/bin/memcached -vv -m 1024 -p 11212 -t 2 -I 10m
autostart=true
autorestart=true
priority=100
redirect_stderr=true
stdout_logfile=memcached_stdout.log
[group:sparc2]
programs=gunicorn,memcached
priority=100
[serviceuser@CUI_15500 etc]$
知道如何处理这个问题吗?这是我第一次使用主管。