Supervisor

From Wiki
Revision as of 10:02, 20 June 2024 by Qljca (talk | contribs) (Created page with "== 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 <pre>yum install epel-release</pre> 2. Install supervisor <pre>yum -y install supervisor</pre> 3. Configuration file of Supervisor is /etc/supervisord.conf 4. Start and Enable...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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