Questions tagged [circusd]

Circus is a Python program that will let you run and watch multiple processes and sockets.

Circus is a process & socket manager. It can be used to monitor and control processes and sockets.

Circus can be driven via a command-line interface or programmatically through its Python API.

22 questions
0
votes
1 answer

Error running django with gunicorn and circus

I want to run django on an ubunu 14.04 machine , using gunicorn and circus. when I start gunicorn manually, it works fine, but when I try to run it with circus , this error occurs: Traceback (most recent call last): File…
razieh babaee
  • 298
  • 5
  • 19
0
votes
1 answer

Circus WEBUI is not working

I have the following circus config: [circus] pidfile = /tmp/circus.pid check_delay = 5 statsd = True httpd = True httpd_host = 10.3.2.1 httpd_port = 8888 endpoint = tcp://127.0.0.1:5555 pubsub_endpoint =…
NarūnasK
  • 4,564
  • 8
  • 50
  • 76
0
votes
1 answer

virtualenv & subprocess: How to get the correct path to a script

When someone installs my Python package, they can use the command mycmd (it's a console script added to the python bin/ directory). In turn, mycmd launches several other Python console scripts using subprocess: subprocess.Process('celery arg1…
RexE
  • 17,085
  • 16
  • 58
  • 81
0
votes
1 answer

Circus/ZeroMQ "socket in use" error

I'm running a Flask app and internally using a library written in Node.js, which I access through ZeroRPC (the actual node process is managed by Circus). This works fine on its own; I can unit test with no issues. But when starting the Flask app as…
limp_chimp
  • 13,475
  • 17
  • 66
  • 105
0
votes
1 answer

circusctl incr [] does not increment by nbprocess

Here is my circus.ini [circus] check_delay = 5 endpoint = tcp://127.0.0.1:5555 pubsub_endpoint = tcp://127.0.0.1:5556 stats_endpoint = tcp://127.0.0.1:5557 httpd = False debug = False [watcher:sample1] cmd = /worker/sample1.php warmup_delay = 0…
mmohiudd
  • 310
  • 2
  • 10
0
votes
1 answer

Circus: run a process once?

I'm using circus to manage a number of loosely coupled processes; a main process that needs to run once, and then a number of secondary processes that start a few moments later. The secondary processes need to be restarted until the work is…
Phillip B Oldham
  • 18,807
  • 20
  • 94
  • 134
-1
votes
1 answer

How to find the pid file of circusd?

I am running circusd for my python's service and want to use monit for the same. Hence, I need to know the pid file in order to monitor circusd. All I can see in the ps aux command is Python processes but no sign of Circusd. Is the daemon under the…
aviral sanjay
  • 953
  • 2
  • 14
  • 31
1
2