Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to force supervisord to stop a process in BACKOFF status

Tags:

When you start a process using supervisord it is in "STARTING" status then if it gets trouble it gets in "BACKOFF" status if there is an autorestart set to true.

I don't want to wait for "startretries" to be attempted, I want to stop the restarting process manually using supervisorctl. The only way I found to do so is to stop the entire supervisord service and start it again (every process go in "STOPPED" status if there is no autostart).

Is there a better way to do so (force "STOPPED" status from "BACKOFF" status) as I have other processes managed in supervisord that I don't want to stop?

If I try to stop it with

supervisorctl stop process 

I get

FAILED: attempted to kill process with sig SIGTERM but it wasn't running 

If I try to start it with

supervisorctl start process 

I get

process: ERROR (already started) 

Of course I could disable the autorestart, but it can be useful, a workaround is to limit the startretries, is there a better solution?

like image 905
zenbeni Avatar asked Jul 02 '14 09:07

zenbeni


People also ask

How can the supervisor process be stopped?

Finally, you can exit supervisorctl with Ctrl+C or by entering quit into the prompt: supervisor> quit.

How do I restart my Supervisord process?

To start a non-running service or stop a running one, use supervisorctl start my-daemon and supervisorctl stop my-daemon . To restart a service, you can also use supervisorctl restart my-daemon .

What is Supervisorctl command?

supervisorctl - supervisorctl Documentation Supervisor is a client/server system that allows its users to monitor and control a number of processes on UNIX-like operating systems. It shares some of the same goals of programs like launchd, daemontools, and runit.


Video Answer


1 Answers

Hey this maybe help for you:

When an autorestarting process is in the BACKOFF state, it will be automatically restarted by supervisord. It will switch between STARTING and BACKOFF states until it becomes evident that it cannot be started because the number of startretries has exceeded the maximum, at which point it will transition to the FATAL state. Each start retry will take progressively more time.

so you don't need to stop the BACKOFF process manually. if you do not want to wait too long time, it is better to set a little number to startretries.

see more info here: http://supervisord.org/subprocess.html

GOOD LCUKY

like image 70
Simon Jin Avatar answered Sep 28 '22 06:09

Simon Jin