source

Supervisor and Crontab working together

#[Pragmatic(Kiwi)]
2 min readNov 26, 2021

--

Supervisor helps up control a number of processes in UNIX like operating systems, Crontab is a task scheduler that runs scripts.

Supervisor Setup

  1. Go to your server / device CLI
  2. Install supervisor (sudo apt-get install) — if it fails try running sudo apt-get update
  3. Create a script, any script! — I will create…

--

--