Comments on How to Install UrBackup Server and Client on Ubuntu 20.04
UrBackup is an open-source and client/server backup system for Linux operating systems. It supports both file and image backups in a live system without interrupting current processes. In this tutorial, I will show you how to install the UrBackup server and Client on Ubuntu 20.04.
4 Comment(s)
Comments
Why do you need two servers (per your first line of prerequisites)?
Thanks Bro..!!!
Hello
I have followed all the steps and i got 2 errors:
1 first error
When i type chown -R urbackupsrv:urbackupsrv /mnt , i get the error
chown: invalid user: ‘urbackupsrv:urbackupsrv’
2 error
Even though i got that error above, i kept going and followed the rest of the steps and it worked fine on the side of the server but on the side of the client after i installed
the service is showing failed
systemctl status urbackupclientbackend
? urbackupclientbackend.service - UrBackup Client backend
Loaded: loaded (/lib/systemd/system/urbackupclientbackend.service; enabled; vendor preset: enabled)
Active: failed (Result: exit-code) since Tue 2023-07-11 17:25:30 UTC; 1s ago
Process: 2158 ExecStart=/usr/local/sbin/urbackupclientbackend --config /etc/default/urbackupclient --no-consoletime>
Main PID: 2158 (code=exited, status=2)
Jul 11 17:25:29 ubuntuserver20 systemd[1]: Started UrBackup Client backend.
Jul 11 17:25:30 ubuntuserver20 urbackupclientbackend[2158]: ERROR: Internet server not configured. Please configure "in>
Jul 11 17:25:30 ubuntuserver20 systemd[1]: urbackupclientbackend.service: Main process exited, code=exited, status=2/IN>
Jul 11 17:25:30 ubuntuserver20 systemd[1]: urbackupclientbackend.service: Failed with result 'exit-code'.
In my case the chown command it works like this:
chown -R urbackup:urbackup: /directory/backup
not: chown -R urbackupsrv:urbackupsrv /directory/backup
Thanks for your tutorial.