LogoLoading Please Wait...

Supervisor Integration to Run The queue in Laravel – Linux

By divine_admin_infosys

Install supervisor by using the following command :
sudo apt-get install supervisor
After you have successfully installed supervisor, you will see a folder “supervisor” inside /etc/ with below mentioned file and folder.
supervisord.conf and conf.d folder
If folder is not created, run this command:
echo_supervisord_conf > /etc/supervisord.conf
Now go to supervisor directory and run the command s below to add the configuration.
touch laravel-worker.conf
Now open laravel-worker.conf file and enter the configuration as per your requirements
[program:laravel-worker]
process_name=%(program_name)s_%(process_num)02d
command=php <Laravel_Folder_Path>/artisan queue:work --tries=3
autostart=true
autorestart=true
user=root
numprocs=8
redirect_stderr=true
stdout_logfile=/var/log/supervisor/laravel-queue.log

Save the file and scroll to the end of supervisord.conf in /etc/supervisor/supervisord.conf and change the path as mentioned below (if not available)
files = /etc/supervisor/laravel-worker.conf

Now, Let’s Start Supervisor to run the queue worker but before that les check if supervisor is already running or not with the command below.

use ps -ef to check PID(process ID) and kill to finish the task.

Run : supervisord -c /etc/supervisor/supervisord.conf

Run the following commands one by one after starting supervisor.

sudo supervisorctl reread -- Restart all prgrams in configuration files
sudo supervisorctl update -- Update configurations to supervisord
sudo supervisorctl start laravel-worker:* -- Start a program

To check the status run the command: supervisorctl status

Divine Infosys