Skip to content
Advertisement

Unable to start a Python app using Supervisord

I have a small app that I want to start using supervisord. I’ve tried the following

My initial shell script could start and stop celery and Flask as daemons by saving the PID in a text file. Since supervisord would take care of killing it, I got rid of the stop section and non daemonized the script.

After trial and error these are the script and conf duos that I think make sense but they don’t work.

1

Shell Script

JavaScript

Conf File

JavaScript

2

Without a shell file

JavaScript

stderr_logfile, autostart, autorestart, stopasgroup, killasgroup same as #1

I get a message saying could not find the command source. I tried the same command on the terminal in the same directory and it works.


3

Shell Script

JavaScript

Conf

JavaScript

stderr_logfile, autostart, autorestart, stopasgroup, killasgroup same as #1


I also tried using command=bash -c “command here” even though I feel it isn’t required in the all the above cases. It’s mentioned here in the documentation.

I get the following errors and I’m not able to figure out why:-

Could not spawn

Process Exited too quickly

Advertisement

Answer

In the case of #2, you don’t actually need to activate the virtualenv. You can change it to this:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement