Support the ongoing development of Laravel.io →
Installation Configuration Queues
Last updated 1 year ago.
0

Ok, found the reason.

As I was using the brew php55, it is not available by default under the

php

command.

The queue:listen runs the

php artisan queue:work

process, which obviously was not working.

So here is the updated and correct supervisor program config:

[program:qlistener_dashboard]
command=/usr/local/opt/php55/bin/php artisan queue:listen --env=development
directory=/Users/pavelp/Sites/local.dashboard.kreditech.com/
autostart=true
autorestart=true
stopsignal=KILL
killasgroup=true
stopasgroup=true
stdout_logfile=/var/log/supervisor/%(program_name)s-stdout.log
stderr_logfile=/var/log/supervisor/%(program_name)s-stderr.log
environment=PATH="/usr/local/opt/php55/bin:$PATH"
Last updated 1 year ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.