How to install Supervisor on RHEL/CentOS/AlmaLinux/RockyLinux

Supervisor is a client/server system that allows its users to monitor and control a number of processes on UNIX-like operating systems. Supervisor is used with Laravel to run Queue tasks automatically.

 

1. Install EPEL repo

yum install epel-release


2. Install supervisor

yum -y install supervisor

 

3. Configure Supervisor from

/etc/supervisord.conf

 

4. Start and Enable supervisor on your system

systemctl start supervisord
systemctl enable supervisord

 

 

  • laravel, supervisor
  • 1011 Users Found This Useful
Was this answer helpful?

Related Articles

How to run Laravel Queues with Supervisor on CentOS/AlmaLinux/RockyLinux/RHEL

You have to run this command php artisan queue:work to execute Laravel Queues, however, in a...