I installed Supervisor on CentOS 6.5 and currently experiencing some weird error that I can't seem to fix.
I created a supervisord.conf
file in /etc
directory and call supervisor like this:
$ supervisord -c /etc/supervisord.conf
Which looks pretty basic. But this error keeps appearing:
Error: .ini file does not include supervisord section
My supervisord.conf file looks like:
[program:supervisord]
command=/usr/local/bin/run_queue.sh
autostart=true
autorestart=true
stderr_logfile=/var/log/laraqueue.err.log
stdout_logfile=/var/log/laraqueue.out.log
Does anybody know what's the problem here?