Notepad/enter/Coding Tips (Classical)/Terminal Tips/System Client/Linux/Distributions/AlpaLinux.md

38 lines
681 B
Markdown
Raw Permalink Normal View History

2023-07-05 18:29:11 +00:00
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!
---