Systemd
Systemd Troubleshooting#
List Installed Micipsa Units#
Check Status of A unit#
systemctl status micipsa-hardware.service
systemctl status micipsa-hardware.target
systemctl status micipsa-compose-stack.service
Check If Service is Enabled#
Inspect Dependency Graph#
systemctl list-dependencies micipsa-compose-stack.service
systemctl list-dependencies micipsa-hardware.target
Inspecting Logs#
All units write to the systemd journal. Each service uses a SyslogIdentifier to make filtering straightforward.
# Follow logs from the hardware check service
journalctl -fu micipsa-hardware.service
# Follow logs from the Docker stack service
journalctl -fu micipsa-compose-stack.service
# Show logs from the current boot only
journalctl -b -u micipsa-compose-stack.service
# Show last 50 lines
journalctl -n 50 -u micipsa-hardware.service
