Tips for debugging a systemd unit
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Check the systemd journal for mentions of my-service | |
journalctl | grep -i my-service | |
# Show the status of the service | |
systemctl status my-service | |
# Service is at /lib/systemd/system/my-service.service | |
# After editing unit file on disk, reload the units | |
systemctl daemon-reload |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment