The supervisor tag has no wiki summary.
1
vote
2answers
98 views
Is there any equivalent to php5-cgi for python?
nginx doesn't allow to directly execute external programs, so to run CGIs you need to run an standalone fcgi backend and connect to it with the fastcgi_pass directive.
For php it's easy, e.g. using ...
0
votes
1answer
74 views
Optimize number of workers for several gunicorn instances
I'm configuring gunicorn (monitored by supervisord and behind an nginx frontend) and got a bit confused about the optimal number of processes to setup.
In the documentation it is clearly explained ...
1
vote
0answers
37 views
Linux equivalent of OS X “Launchd”, with respect to use by non-root users?
Is there a good way for non-root users to start "managed" processes? In this case, I am using
managed" to describe a process that starts up when the user logs in, is monitored by some sort of ...
0
votes
1answer
96 views
Supervisord and gunicorn_django not playing well sometimes
I can issue a command via supervisorctl to shutdown my gunicorn_django process but sometimes it hangs around until I have to eventually kill it with a -9. The log for the process usually has this:
...
0
votes
2answers
41 views
vmware esx, report error from guest to the hypervisor
I have a windows 2003 server running under vmware esx.
For weird reasons, outside of our control, sometimes the guest tcp/ip stack stops working. So, for example, remote desktop connections don't ...
1
vote
0answers
55 views
Supervisord: how to append to $PATH
I can't seem to figure out how to append to the default path in a supervisord program config.
I can reset the path:
environment=PATH="/home/site/environments/master/bin"
But when I try:
...
0
votes
1answer
94 views
What's the difference between cron and services like Supervisord?
Recently I came across supervisor while researching beanstalk stuff. Can someone explain to me why I might use a process management service like that instead of plain old cron jobs?
0
votes
1answer
65 views
Supervisor - how to get a program to run at intervals of time
Perhaps I'm misunderstanding with Supervisor does, but perhaps me asking this question will help clear that up. Basically, I have a Supervisor program in my /etc/supervisord.conf file that executes a ...
1
vote
1answer
84 views
changing python runtime maximum recursion limit
I am trying to install supervisord on a ubuntu ec2 server. When running easy_install I get the following error:
> easy_install supervisor
...
RuntimeError: maximum recursion depth exceeded
I ...
1
vote
0answers
49 views
Supervisord not closing http ports
I'm trying to use Supervisord to keep my node.js web app alive.
However when I run supervisorctl shutdown, it doesn't close the http port that node.js uses.
Is there a way to configure Supervisord ...
0
votes
1answer
120 views
Supervisorctl successfully starts, but cannot stop
When I start supervisorctl, it runs fine without issue. However, when I try to stop it or run status, I get this error:
# supervisorctl -c supervisor/stage.conf status
error: <class ...
0
votes
2answers
364 views
When installing supervisord, how to get it to start on reboots?
I'm on a ubuntu server, once I install supervisord will it start on reboots?
How can I find this out?
2
votes
1answer
1k views
Django + gunicorn + virtualenv + Supervisord issue
I have a strange issue with my virtualenv + gunicorn setup, only when gunicorn is launched via supervisord. I do realize that it may very well be an issue with my supervisord and I would appreciate ...
0
votes
2answers
477 views
Supervisord doesn't stop nginx process
I'm using Supervisor a lot, and in this project I have an nginx process managed by Supervisord. The relevant parts of the configuration is this:
[supervisord]
...
2
votes
1answer
972 views
deploying using supervisor and gunicorn
I have a problem deploying Django app using Gunicorn and Supervisor. While I can make Gunicorn serving my app (by setting proper PYTHONPATH and running apropriate command, the one from supervisord ...
0
votes
1answer
220 views
Tornado Startup Management
I have an application written to run in Tornado server..
The application should start on boot, and if it fails ( be restarted )
Currently I am using supervisord, but i wanted to see what else is ...
0
votes
3answers
796 views
Django, uWSGI and Supervisord config
OK I have Django, nginx and uWSGI set up on my server...the problem is I start uWSGI manually via this command:
uwsgi -s /home/user/sites/sock/uwsgi.sock -t 10 -M -p 1 -C --pythonpath ...
0
votes
1answer
128 views
SNMP Mibs and Agent
I got an answer to you, I've got a supervisor server (Nagios+Centreon), how could I add a constructor specific mib into my Server?
Would I need any special Agent with these mibs?
0
votes
2answers
664 views
Supervisor always quit process with 'exit status 0; not expected'
I'm currently rebuilding my vps, and I'd like to use supervisor for managing my gunicorn/wsgi django processes. Thing is, supervisor keeps exiting the processes:
2010-07-23 14:54:40,575 INFO ...
0
votes
3answers
954 views
How can I run supervisord without using root?
I seem to be having trouble figuring out why supervisord won't run as a non-root user. If I start it with the user set to jason (pid 1000), I get the following in the log file:
2010-05-24 ...
1
vote
1answer
668 views
Entering supervisor mode in PhoenixBIOS
I'm trying to change the boot order on a VM that uses PhoenixBIOS. I can get to the setup utility. However, I can't figure out how to get into supervisor mode, which is required to change the boot ...
1
vote
2answers
495 views
How do I automatically start supervisor on boot in FreeBSD?
Is there a pre-existing startup script for supervisord on FreeBSD? If not, is there a good guide for writing rc.d scripts for FreeBSD? I'm pretty new to the platform.
Thanks.
UPDATE:
I now have the ...
3
votes
3answers
1k views
Supervisor HTTP Server Port Issue
I have supervisor setup to manage a few processes. It works perfectly fine when I boot my server, however when I stop it and try to start it again it fails and give's me this error msg:
* Starting ...
15
votes
7answers
6k views
How to automatically start supervisord on Linux (Ubuntu)
Supervisord does not come with an init script or does not indicate how to get it started automatically, ie. after a reboot. I've tried some user-contributed /etc/init.d scripts, but they all fail.
...