Create a Service
Systemd
[Unit]
Description=Your service description
After=network.target
[Service]
Type=simple
User=your_username
WorkingDirectory=/path/to/service/directory
ExecStart=/path/to/service/executable
[Install]
WantedBy=multi-user.targetsudo systemctl daemon-reloadSysV
Upstart
Last updated