O Windows pode fazer isso por você.
Abra o painel de controle Serviços. Selecione seu serviço. Vá para a guia Recuperação. Você pode selecionar opções para a primeira, segunda e subsequentes falhas de serviço.
Estou acostumado a usar o supervisord em minhas máquinas Unix e agora preciso fazer o mesmo no Windows. Infelizmente, o supervisord não é executado em máquinas Windows.
Alguém conhece alguma alternativa?
Você pode usar o Cygwin para executar supervisord
no Windows, conforme descrito aqui: link
Instruções citadas:
- If you have not done it yet, install Cygwin. During the installation process, select Python.
- From the Cygwin terminal, install virtualenv as usual.
Create a virtualenv for supervisord, and then install as usual:
pip install supervisord
Configure supervisord in the usual way. Keep in mind that supervisord will be running with Cygwin, so you better use paths the Cygwin way (C:\myservers\project1 translates to /cygdrive/c/myservers/project1 in Cygwin).
Now you probably want to install supervisord as a service. Here's how I do it:
cygrunsrv --install supervisord --path /home/Administrator/supervisor/venv/bin/python --args "/home/Administrator/supervisor/venv/bin/supervisord -n -c /home/Administrator/supervisor/supervisord.conf"
Go to the Windows service manager and start the service supervisord that you just installed.
A solução acima me ajudou a controlar uma instância do Tomcat em execução em uma sessão de usuário normal (em vez de executar como um serviço):
[program:tomcat]
command=/cygdrive/c/tomcat/bin/catalina.sh run
numprocs=1
directory=/cygdrive/c/tomcat
autostart=false
Você pode definir supervisord
para executar no logon e, em seguida, usar sua interface da web para iniciar / parar o tomcat
Tags windows