Supervisor

From Wiki
Jump to navigation Jump to search

Supervisor Installation 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. Configuration file of Supervisor is /etc/supervisord.conf


4. Start and Enable supervisor on your system

systemctl start supervisord
systemctl enable supervisord