Installing supervisord on a CentOS server

If you install the supervisord package directly via the default repos you might get an outdated version.
1: To install the latest supervisord version you need to use:
easy_install supervisor
2: After the installation to generate a plain config file run:
echo_supervisord_conf > /etc/supervisord.conf
3: To start with the new conf run:
supervisord -c /etc/supervisord.conf
4: Then to start all workers run:
supervisorctl start all
5: To check the status run:
supervisorctl status
If you are getting lots of FATAL errors, you are better off stopping the workers and checking the logs:
supervisorctl stop all
Recent Posts

How DigitalOcean Simplifies Cloud Computing for Developers
2023-01-18 12:35:28
How to Get Current Route Name in Laravel
2020-11-08 08:57:11
How to check the logs of running and crashed pods in Kubernetes?
2020-10-28 09:01:44
Top 10 VScode Shortcuts For Mac and Windows to Help You be More Productive
2020-10-28 07:12:51