Create Systemd Service Unit

  Uncategorised
# vi /etc/systemd/system/my_service.service
[Unit]
Description=Service Description
After=network.target

[Service]
Type=simple
ExecStart=/path/to/executable
TimeoutStartSec=0

[Install]
WantedBy=default.target
systemctl daemon-reload

LEAVE A COMMENT