The  Linux distribution which my gitea server runs on. The [documentation](https://alpa.readthedocs.io/en/latest/topics/overview.html#copr-targets) exists here. Their git repository exists [here](https://github.com/orgs/alpa-team/repositories).

----

Installing supervisord 
```
dnf install epel-release
```

```
which yum
```
/usr/bin/yum 

```
yum install supervisor -y
```

Check your packages:  
```
cd /etc/
ls
```

![[Pasted image 20230626071733.png]]

```
systemctl start supervisord
systemctl enable supervisord
```
Output: Created symlink /etc/systemd/system/multi-user.target.wants/supervisord.service → /usr/lib/systemd/system/supervisord.service.

Success!  


---