# systemd ## 로그 확인 journalctl -f $ cat /etc/systemd/system/yourdaemon.service [Unit] Description=Your Daemon After=network-online.target Wants=network-online.target systemd-networkd-wait-online.service StartLimitIntervalSec=500 StartLimitBurst=5 [Service] Restart=on-failure RestartSec=5s ExecStart=/path/to/daemon [Install] WantedBy=multi-user.target