blob: 32d04cebc33c98a799aad1ac96c57d01bf443caa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Systemd control
## Unit files
Find unit file for given service:
systemctl status <service>
After editing unit file, need to reload wih
systemctl daemon-reload
## Logs
journalctl -u <service>
|