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

  • 0

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

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

Was this answer helpful?

« Back