Supervisor: Difference between revisions

From Wiki
Jump to navigation Jump to search
(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...")
 
No edit summary
 
Line 1: Line 1:
== Supervisor Installation on CentOS/AlmaLinux/RockyLinux/RHEL==
== 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.
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.

Latest revision as of 10:03, 20 June 2024

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