Last updated on September 24, 2020 by Dan Nanni
If you maintain mission-critical data on your server, you probably want to back them up on a remote site for disaster recovery. For any type of offsite backup, you need to consider encryption in order to avoid any unauthorized access to the backup. In addition, it is important to use incremental backup, as opposed to full backup, in order to save time, disk storage and bandwidth costs incurred in ongoing backup activities.
Duplicity is an encrypted incremental backup tool in Linux. Duplicity uses librsync
to generate bandwidth/space-efficient incremental archives. It also uses GnuPG to encrypt and/or sign backup archives to prevent unauthorized data access and tampering. Note that the incremental backup performed by Duplicity is file-system-level backup. If you are interested in block-device-level backup, bdsync
is another option.
In this tutorial, I will describe how to create a secure incremental offsite backup in Linux with Duplicity.
To install Duplicity on Ubuntu, Debian or Linux Mint:
$ sudo apt-get install duplicity python-paramiko
To install Duplicity on CentOS or RHEL, first enable EPEL repository, and run:
$ sudo yum install duplicity python-paramiko
To install Duplicity on Fedora:
$ sudo yum install duplicity python-paramiko
To create a secure and incremental backup of a local folder (e.g., ~/Downloads
), and transfer it to a remote SSH server via SCP, use the following command. Note that before proceeding, you must enable password-less SSH login to the remote SSH server first.
$ duplicity ~/Downloads scp://user@remote_site.com//home/user/backup/
Local and Remote metadata are synchronized, no sync needed. Last full backup date: none GnuPG passphrase: Retype passphrase to confirm: No signatures found, switching to full backup. --------------[ Backup Statistics ]-------------- StartTime 1375918500.17 (Wed Aug 7 19:35:00 2013) EndTime 1375918539.07 (Wed Aug 7 19:35:39 2013) ElapsedTime 38.90 (38.90 seconds) SourceFiles 3 SourceFileSize 65982804 (62.9 MB) NewFiles 3 NewFileSize 65982804 (62.9 MB) DeletedFiles 0 ChangedFiles 0 ChangedFileSize 0 (0 bytes) ChangedDeltaSize 0 (0 bytes) DeltaEntries 3 RawDeltaSize 65978708 (62.9 MB) TotalDestinationSizeChange 66132356 (63.1 MB) Errors 0 -------------------------------------------------
When you create a remote backup of given data for the first time, Duplicity will create a full backup, and ask you to set an initial GnuPG passphrase for encryption. Subsequent runs of Duplicity will create incremental backups, and you need to provide the same GnuPG passphrase created during the first run.
If you do not want to be prompted to enter a passphrase, you can set PASSPHRASE
environment variable, prior to running Duplicity as follows.
$ PASSPHRASE=mypass duplicity ~/Downloads scp://user@remote_site.com//home/user/backup/
If you do not want to pass a plain-text passphrase in the command-line, you can create the following backup script. To be more secure, make the script readable to you only.
export PASSPHRASE=yourpass duplicity ~/Downloads scp://user@remote_site.com//home/user/backup/ unset PASSPHRASE
If you do not need a secure backup, you can disable encryption as follows.
$ duplicity --no-encryption ~/Downloads scp://user@remote_site.com//home/user/backup/
For critical data, it is probably a good idea to verify that a remote backup was successful. You can check whether or not the local and remote volumes are in sync, by using the following command.
$ duplicity verify scp://user@remote_site.com//home/user/backup/ ~/Downloads
Local and Remote metadata are synchronized, no sync needed. Last full backup date: Wed Aug 7 19:34:52 2013 Verify complete: 8 files compared, 0 differences found.
Note that when using verify
option, you need to reverse the order of local and remote folders; specify the remote folder first.
In order to restore a remote backup locally, run the following commnad:
$ duplicity scp://user@remote_site.com//home/user/backup/ ~/Downloads_restored
To successfully restore a remote backup, the specified restore destination directory (e.g., Downloads_restored
) must not exist locally beforehand.
Besides SCP, Duplicity also supports several other protocols including FTP.
To use FTP in Duplicity, use the following format:
$ duplicity ~/Downloads ftp://username@ftp_server.com/backup_directory
For non-interactive runs, specify the FTP password in FTP_PASSWORD
environment variable:
$ FTP_PASSWORD=mypass duplicity ~Downloads ftp://username@ftp_server.com/backup_directory
If you encounter the following error, this means that you did not install SSH2 protocol library for python.
BackendException: Could not initialize backend: No module named paramiko
To fix this error, install the following.
On Ubuntu, Debian or Mint:
$ sudo apt-get install python-paramiko
On Fedora, CentOS or RHEL:
$ sudo yum install python-paramiko
If you encounter the following error, it is because you did not set up password-less SSH login to a remote backup server. Make sure that you do, and retry.
BackendException: ssh connection to xxx@xxxx failed: No authentication methods available
This website is made possible by minimal ads and your gracious donation via PayPal or credit card
Please note that this article is published by Xmodulo.com under a Creative Commons Attribution-ShareAlike 3.0 Unported License. If you would like to use the whole or any part of this article, you need to cite this web page at Xmodulo.com as the original source.
Xmodulo © 2021 ‒ About ‒ Write for Us ‒ Feed ‒ Powered by DigitalOcean