Tag: queues
-
Running Laravel Queues with systemd Instead of Supervisor
Use systemd to run reliable Laravel queue workers with automatic restarts, logging, and simple deploy hooks on modern Linux servers.
-
How to Run Laravel Queues in Production Using Supervisor
If your Laravel queue works locally but nothing happens in production, it’s almost always because there’s no worker running. queue:work needs to run continuously, and SSH sessions don’t count. The correct solution is Supervisor. Install Supervisor On Ubuntu: Make sure it’s running: Create a queue worker config Create a config file: Example config to run on a Redis…