One of the problems which i face with supervisord is that when i have a command which in turn spawns another process supervisord is not able to kill it. For eg.

if i have a java process which when run normally is like

 $ zkServer.sh start-foreground
 $ ps -eaf | grep zk
 user 30404 28280  0 09:21 pts/2    00:00:00 bash zkServer.sh start-foreground
 user 30413 30404 76 09:21 pts/2    00:00:10 java -Dzookeeper.something..something

These kind of processes which have multiple childs are not well handled by supervisord when it comes to stopping them from supervisorctl, my config file looks like

[program:zookeeper]
command=zkServer.sh start-foreground
autorestart=true
stopsignal=KILL

What i mean is when i run this from supervisord and try to stop from supervisorctl only the top level process gets killed not the actual java process.

link|improve this question

60% accept rate
It is my understanding that the systemd init-replacement's use of cgroups allows for reliably tracking child processes. It might be suitable for your needs. – sarnold Feb 1 at 4:14
eh stackoverflow is changing 'supervisord' to 'supervised' again! – FUD Feb 1 at 4:24
feedback

1 Answer

A feature was recently added to supervisord to send SIGKILL to the whole process group. It's in github but not officially released yet.

If the process id is available in a file, you can use the pid-proxy program

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.