Skip to content

Systemd

Troubleshooting Banner

Jetson Xavier NX

ubuntu 24.04


Systemd Troubleshooting#

List Installed Micipsa Units#

systemctl list-unit-files "micipsa*"

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#

systemctl is-enabled micipsa-hardware.service
systemctl is-enabled micipsa-compose-stack.service

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