When installing urbackup on Centos 7, I needed to create a systemd start script. Here is my /usr/lib/systemd/system/urbackup.service file:
[Unit]
Description=URBackup backup service
After=syslog.target network.target
[Service]
Type=forking
NotifyAccess=all
PIDFile=/run/urbackup_srv.pid
ExecStart=/usr/local/sbin/start_urbackup_server
[Install]
WantedBy=multi-user.target
Once this file is created, you can do a:
systemctl daemon-reload
systemctl enable urbackup
systemctl start urbackup
and you are done. At least, I was done…