July 2019
Beginner to intermediate
302 pages
9h 38m
English
To check the status of the application, run the following command:
$ supervisorctl status flask_catalog RUNNING pid 40466, uptime 0:00:03
This command provides a status for all of the child processes.
Every time you make a change to your application and then wish to restart Gunicorn in order for it to reflect the changes that have been made, run the following command:
$ supervisorctl restart all
You can also specify specific processes instead of restarting everything:
$ supervisorctl restart flask_catalog