Skip to content

Create services

Create service file

sh
vim /etc/systemd/system/myservice.service

Like this

sh
#./myservice.service
[Unit]
Description=My Service

[Service]
StartLimitInterval=5
StartLimitBurst=10
Restart=always
RestartSec=120
ExecStart=/bin/bash -c "source /.my_startup_file && rez env something -- start"
[Install]
WantedBy=multi-user.target

Then

sh
sudo systemctl daemon-reload # Needed !
sudo systemctl restart myservice