libretime/docs/backing-up-server.md

72 lines
3.2 KiB
Markdown
Raw Normal View History

2019-01-14 09:24:45 +01:00
The following shell commands can be used for database backup and restore on a
2019-06-30 13:18:00 +02:00
running *PostgreSQL* server in an LibreTime system.
2019-01-14 09:24:45 +01:00
You can dump the entire database to a zipped file with the combination of the
**pg\_dumpall** command and **gzip**. The **pg\_dumpall** command is executed
as the user *postgres*, by using the **sudo** command and the **-u** switch. It
is separated from the **gzip** command with the pipe symbol.
```bash
2019-01-14 12:46:46 +01:00
sudo -u postgres pg_dumpall | gzip -c > libretime-backup.gz
```
2019-01-14 09:24:45 +01:00
This command can be automated to run on a regular basis using the standard
**cron** tool on your server.
2019-06-30 13:18:00 +02:00
When restoring a production database on a cleanly installed LibreTime system, it
2019-01-14 09:24:45 +01:00
may be necessary to drop the empty database that was created during the new
installation, by using the **dropdb** command. Again, this command is executed
with **sudo** as the user *postgres*: 
```bash
sudo -u postgres dropdb airtime
```
2019-01-14 09:24:45 +01:00
This **dropdb** command above is necessary to avoid 'already exists' errors on
2019-06-30 13:18:00 +02:00
table creation when overwriting an empty LibreTime database in the next step.
2019-01-14 09:24:45 +01:00
These errors might prevent some data from being restored, such as user account
data.
2019-01-14 09:24:45 +01:00
To restore, first unzip the backup file with **gunzip**, then use the **psql**
command as the *postgres* user:
```bash
2019-01-14 12:46:46 +01:00
gunzip libretime-backup.gz
2019-01-14 13:56:25 +01:00
sudo -u postgres psql -f libretime-backup
```
2019-06-30 13:18:00 +02:00
You should now be able to log in to the LibreTime web interface in the usual way.
2019-01-14 09:24:45 +01:00
For safety reasons, your regular database backups should be kept in a directory
which is backed up by your storage backup tool of choice; for example, the
*/srv/airtime/database\_backups* directory. This should ensure that a storage
2019-06-30 13:18:00 +02:00
restore can be made along with a matching and complete version of the LibreTime
2019-01-14 09:24:45 +01:00
database from the day that the storage backup was made. 
Storage backup
--------------
2019-06-30 13:18:00 +02:00
Backing up the LibreTime database with **pg\_dumpall** will not back up the
LibreTime media storage server, which is likely to need a great deal more backup
2019-01-14 09:24:45 +01:00
space. Creating a compressed file from hundreds of gigabytes of storage server
contents is likely to take a very long time, and may have little benefit for the
amount of CPU power used, if the media files are already stored in a highly
compressed format. It is also impractical to copy very large backup files across
the network on a daily basis.
2019-01-14 09:24:45 +01:00
Instead, it is preferable to use an incremental backup technique to synchronize
2019-06-30 13:18:00 +02:00
the production LibreTime server storage with a backup server each day or night. If
the backup server also contains an LibreTime installation, it should be possible
2019-01-14 09:24:45 +01:00
to switch playout to this second machine relatively quickly, in case of a
hardware failure or other emergency on the production server.
2019-01-14 09:24:45 +01:00
A standard incremental backup tool on GNU/Linux servers is *rsync*
[(http://rsync.samba.org/)](http://rsync.samba.org/)) which can be installed
using the package manager of your GNU/Linux distribution. However, incremental
backup alone cannot help in the scenario where a file which later proves to be
important has been deleted by an administrator. For backups that can be rolled
back to restore from an earlier date than the current backup, the tool
*rdiff-backup*
[(http://www.nongnu.org/rdiff-backup/](http://www.nongnu.org/rdiff-backup/)) can
be deployed.