2017-07-29 07:36:16 +02:00
|
|
|
<img src="https://cdn.rawgit.com/witten/borgmatic/master/static/borgmatic.svg" width="150px" style="float: right; padding-left: 1em;">
|
2014-12-02 04:49:25 +01:00
|
|
|
|
2014-11-27 18:29:31 +01:00
|
|
|
## Overview
|
2014-10-31 06:34:03 +01:00
|
|
|
|
2016-06-10 20:21:53 +02:00
|
|
|
borgmatic (formerly atticmatic) is a simple Python wrapper script for the
|
2016-04-10 19:23:32 +02:00
|
|
|
[Borg](https://borgbackup.readthedocs.org/en/stable/) backup software that
|
2015-07-19 03:35:29 +02:00
|
|
|
initiates a backup, prunes any old backups according to a retention policy,
|
|
|
|
and validates backups for consistency. The script supports specifying your
|
|
|
|
settings in a declarative configuration file rather than having to put them
|
|
|
|
all on the command-line, and handles common errors.
|
2014-10-31 06:34:03 +01:00
|
|
|
|
2014-11-26 01:01:59 +01:00
|
|
|
Here's an example config file:
|
|
|
|
|
2017-07-05 03:23:59 +02:00
|
|
|
```yaml
|
|
|
|
location:
|
|
|
|
# List of source directories to backup. Globs are expanded.
|
|
|
|
source_directories:
|
|
|
|
- /home
|
|
|
|
- /etc
|
|
|
|
- /var/log/syslog*
|
|
|
|
|
2017-07-23 07:56:46 +02:00
|
|
|
# Paths to local or remote repositories.
|
|
|
|
repositories:
|
|
|
|
- user@backupserver:sourcehostname.borg
|
2017-07-05 03:23:59 +02:00
|
|
|
|
2017-07-10 20:06:28 +02:00
|
|
|
# Any paths matching these patterns are excluded from backups.
|
|
|
|
exclude_patterns:
|
|
|
|
- /home/*/.cache
|
|
|
|
|
2017-07-05 03:23:59 +02:00
|
|
|
retention:
|
|
|
|
# Retention policy for how many backups to keep in each category.
|
|
|
|
keep_daily: 7
|
|
|
|
keep_weekly: 4
|
|
|
|
keep_monthly: 6
|
|
|
|
|
|
|
|
consistency:
|
|
|
|
# List of consistency checks to run: "repository", "archives", or both.
|
|
|
|
checks:
|
|
|
|
- repository
|
|
|
|
- archives
|
2016-01-20 13:11:15 +01:00
|
|
|
```
|
2015-05-11 07:00:31 +02:00
|
|
|
|
2016-06-10 20:21:53 +02:00
|
|
|
borgmatic is hosted at <https://torsion.org/borgmatic> with [source code
|
|
|
|
available](https://torsion.org/hg/borgmatic). It's also mirrored on
|
|
|
|
[GitHub](https://github.com/witten/borgmatic) and
|
|
|
|
[BitBucket](https://bitbucket.org/dhelfman/borgmatic) for convenience.
|
2014-11-19 03:32:16 +01:00
|
|
|
|
2014-10-31 06:34:03 +01:00
|
|
|
|
2017-07-10 20:06:28 +02:00
|
|
|
## Installation
|
2014-10-31 06:34:03 +01:00
|
|
|
|
2016-06-10 20:21:53 +02:00
|
|
|
To get up and running, follow the [Borg Quick
|
|
|
|
Start](https://borgbackup.readthedocs.org/en/latest/quickstart.html) to create
|
|
|
|
a repository on a local or remote host. Note that if you plan to run
|
|
|
|
borgmatic on a schedule with cron, and you encrypt your Borg repository with
|
|
|
|
a passphrase instead of a key file, you'll need to set the borgmatic
|
2015-09-03 07:48:07 +02:00
|
|
|
`encryption_passphrase` configuration variable. See the repository encryption
|
|
|
|
section of the Quick Start for more info.
|
2015-03-15 18:44:18 +01:00
|
|
|
|
|
|
|
If the repository is on a remote host, make sure that your local root user has
|
|
|
|
key-based ssh access to the desired user account on the remote host.
|
|
|
|
|
2016-06-10 20:21:53 +02:00
|
|
|
To install borgmatic, run the following command to download and install it:
|
2014-10-31 06:34:03 +01:00
|
|
|
|
2016-06-10 20:21:53 +02:00
|
|
|
sudo pip install --upgrade borgmatic
|
2014-10-31 06:34:03 +01:00
|
|
|
|
2017-07-03 02:18:33 +02:00
|
|
|
Make sure you're using Python 3, as borgmatic does not support Python 2. (You
|
2017-07-23 05:52:29 +02:00
|
|
|
may have to use "pip3" or similar instead of "pip".)
|
2017-07-03 02:18:33 +02:00
|
|
|
|
2017-07-26 06:18:51 +02:00
|
|
|
## Configuration
|
|
|
|
|
|
|
|
After you install borgmatic, generate a sample configuration file:
|
2017-07-10 20:06:28 +02:00
|
|
|
|
|
|
|
sudo generate-borgmatic-config
|
|
|
|
|
|
|
|
This generates a sample configuration file at /etc/borgmatic/config.yaml (by
|
|
|
|
default). You should edit the file to suit your needs, as the values are just
|
|
|
|
representative. All fields are optional except where indicated, so feel free
|
|
|
|
to remove anything you don't need.
|
|
|
|
|
|
|
|
|
2017-07-26 06:18:51 +02:00
|
|
|
### Multiple configuration files
|
|
|
|
|
|
|
|
A more advanced usage is to create multiple separate configuration files and
|
2017-07-29 07:02:18 +02:00
|
|
|
place each one in an /etc/borgmatic.d directory. For instance:
|
2017-07-26 06:18:51 +02:00
|
|
|
|
|
|
|
sudo mkdir /etc/borgmatic.d
|
|
|
|
sudo generate-borgmatic-config --destination /etc/borgmatic.d/app1.yaml
|
|
|
|
sudo generate-borgmatic-config --destination /etc/borgmatic.d/app2.yaml
|
|
|
|
|
|
|
|
With this approach, you can have entirely different backup policies for
|
|
|
|
different applications on your system. For instance, you may want one backup
|
|
|
|
configuration for your database data directory, and a different configuration
|
|
|
|
for your user home directories.
|
|
|
|
|
|
|
|
When you set up multiple configuration files like this, borgmatic will run
|
|
|
|
each one in turn from a single borgmatic invocation. This includes, by
|
|
|
|
default, the traditional /etc/borgmatic/config.yaml as well.
|
|
|
|
|
|
|
|
|
2017-07-10 20:06:28 +02:00
|
|
|
## Upgrading
|
|
|
|
|
|
|
|
In general, all you should need to do to upgrade borgmatic is run the
|
|
|
|
following:
|
|
|
|
|
|
|
|
sudo pip install --upgrade borgmatic
|
|
|
|
|
2017-07-23 05:52:29 +02:00
|
|
|
(You may have to use "pip3" or similar instead of "pip", so Python 3 gets
|
|
|
|
used.)
|
|
|
|
|
2017-07-10 20:06:28 +02:00
|
|
|
However, see below about special cases.
|
|
|
|
|
2017-07-23 05:52:29 +02:00
|
|
|
|
2017-07-10 20:06:28 +02:00
|
|
|
### Upgrading from borgmatic 1.0.x
|
|
|
|
|
|
|
|
borgmatic changed its configuration file format in version 1.1.0 from
|
|
|
|
INI-style to YAML. This better supports validation, and has a more natural way
|
|
|
|
to express lists of values. To upgrade your existing configuration, first
|
|
|
|
upgrade to the new version of borgmatic:
|
2015-07-19 03:35:29 +02:00
|
|
|
|
2017-07-23 05:52:29 +02:00
|
|
|
As of version 1.1.0, borgmatic no longer supports Python 2. If you were
|
|
|
|
already running borgmatic with Python 3, then you can simply upgrade borgmatic
|
|
|
|
in-place:
|
|
|
|
|
2017-07-10 20:06:28 +02:00
|
|
|
sudo pip install --upgrade borgmatic
|
|
|
|
|
2017-07-23 05:52:29 +02:00
|
|
|
But if you were running borgmatic with Python 2, uninstall and reinstall instead:
|
|
|
|
|
|
|
|
sudo pip uninstall borgmatic
|
|
|
|
sudo pip3 install borgmatic
|
|
|
|
|
|
|
|
The pip binary names for different versions of Python can differ, so the above
|
|
|
|
commands may need some tweaking to work on your machine.
|
|
|
|
|
|
|
|
|
|
|
|
Once borgmatic is upgraded, run:
|
2015-07-19 03:35:29 +02:00
|
|
|
|
2017-07-11 01:06:02 +02:00
|
|
|
sudo upgrade-borgmatic-config
|
2014-10-31 06:34:03 +01:00
|
|
|
|
2017-07-10 20:06:28 +02:00
|
|
|
That will generate a new YAML configuration file at /etc/borgmatic/config.yaml
|
|
|
|
(by default) using the values from both your existing configuration and
|
|
|
|
excludes files. The new version of borgmatic will consume the YAML
|
|
|
|
configuration file instead of the old one.
|
2014-10-31 06:34:03 +01:00
|
|
|
|
2017-07-10 20:06:28 +02:00
|
|
|
|
|
|
|
### Upgrading from atticmatic
|
2016-06-10 20:53:45 +02:00
|
|
|
|
|
|
|
You can ignore this section if you're not an atticmatic user (the former name
|
|
|
|
of borgmatic).
|
|
|
|
|
|
|
|
borgmatic only supports Borg now and no longer supports Attic. So if you're
|
|
|
|
an Attic user, consider switching to Borg. See the [Borg upgrade
|
|
|
|
command](https://borgbackup.readthedocs.io/en/stable/usage.html#borg-upgrade)
|
|
|
|
for more information. Then, follow the instructions above about setting up
|
|
|
|
your borgmatic configuration files.
|
|
|
|
|
|
|
|
If you were already using Borg with atticmatic, then you can easily upgrade
|
|
|
|
from atticmatic to borgmatic. Simply run the following commands:
|
|
|
|
|
|
|
|
sudo pip uninstall atticmatic
|
|
|
|
sudo pip install borgmatic
|
|
|
|
|
|
|
|
That's it! borgmatic will continue using your /etc/borgmatic configuration
|
|
|
|
files.
|
|
|
|
|
2017-07-10 20:06:28 +02:00
|
|
|
|
2014-11-27 18:29:31 +01:00
|
|
|
## Usage
|
2014-10-31 06:34:03 +01:00
|
|
|
|
2016-06-10 20:21:53 +02:00
|
|
|
You can run borgmatic and start a backup simply by invoking it without
|
2014-10-31 06:34:03 +01:00
|
|
|
arguments:
|
|
|
|
|
2015-07-19 03:35:29 +02:00
|
|
|
borgmatic
|
|
|
|
|
2015-02-14 18:23:40 +01:00
|
|
|
This will also prune any old backups as per the configured retention policy,
|
|
|
|
and check backups for consistency problems due to things like file damage.
|
|
|
|
|
2017-07-29 07:02:18 +02:00
|
|
|
If you'd like to see the available command-line arguments, view the help:
|
|
|
|
|
|
|
|
borgmatic --help
|
|
|
|
|
|
|
|
### Verbosity
|
|
|
|
|
2014-11-26 01:01:59 +01:00
|
|
|
By default, the backup will proceed silently except in the case of errors. But
|
|
|
|
if you'd like to to get additional information about the progress of the
|
2015-07-18 06:58:50 +02:00
|
|
|
backup as it proceeds, use the verbosity option:
|
2014-10-31 06:34:03 +01:00
|
|
|
|
2016-06-10 20:21:53 +02:00
|
|
|
borgmatic --verbosity 1
|
2015-07-18 06:58:50 +02:00
|
|
|
|
|
|
|
Or, for even more progress spew:
|
|
|
|
|
2016-06-10 20:21:53 +02:00
|
|
|
borgmatic --verbosity 2
|
2014-10-31 06:34:03 +01:00
|
|
|
|
2017-07-29 07:02:18 +02:00
|
|
|
### À la carte
|
2014-10-31 06:34:03 +01:00
|
|
|
|
2017-07-29 07:02:18 +02:00
|
|
|
If you want to run borgmatic with only pruning, creating, or checking enabled,
|
|
|
|
the following optional flags are available:
|
|
|
|
|
|
|
|
borgmatic --prune
|
|
|
|
borgmatic --create
|
|
|
|
borgmatic --check
|
|
|
|
|
|
|
|
You can run with only one of these flags provided, or you can mix and match
|
|
|
|
any number of them. This supports use cases like running consistency checks
|
|
|
|
from a different cron job with a different frequency, or running pruning with
|
|
|
|
a different verbosity level.
|
2014-11-18 03:35:47 +01:00
|
|
|
|
|
|
|
|
2016-07-04 07:07:53 +02:00
|
|
|
## Autopilot
|
|
|
|
|
|
|
|
If you want to run borgmatic automatically, say once a day, the you can
|
2016-07-04 18:19:34 +02:00
|
|
|
configure a job runner to invoke it periodically.
|
|
|
|
|
|
|
|
### cron
|
|
|
|
|
|
|
|
If you're using cron, download the [sample cron
|
|
|
|
file](https://torsion.org/hg/borgmatic/raw-file/tip/sample/cron/borgmatic).
|
2016-07-04 07:07:53 +02:00
|
|
|
Then, from the directory where you downloaded it:
|
|
|
|
|
2016-07-04 18:19:34 +02:00
|
|
|
sudo mv borgmatic /etc/cron.d/borgmatic
|
2017-07-23 06:20:48 +02:00
|
|
|
sudo chmod +x /etc/cron.d/borgmatic
|
2016-07-04 18:19:34 +02:00
|
|
|
|
|
|
|
You can modify the cron file if you'd like to run borgmatic more or less frequently.
|
|
|
|
|
|
|
|
### systemd
|
|
|
|
|
|
|
|
If you're using systemd instead of cron to run jobs, download the [sample
|
|
|
|
systemd service
|
|
|
|
file](https://torsion.org/hg/borgmatic/raw-file/tip/sample/systemd/borgmatic.service)
|
|
|
|
and the [sample systemd timer
|
|
|
|
file](https://torsion.org/hg/borgmatic/raw-file/tip/sample/systemd/borgmatic.timer).
|
|
|
|
Then, from the directory where you downloaded them:
|
|
|
|
|
2016-07-04 18:35:51 +02:00
|
|
|
sudo mv borgmatic.service borgmatic.timer /etc/systemd/system/
|
2016-07-04 18:19:34 +02:00
|
|
|
sudo systemctl enable borgmatic.timer
|
|
|
|
sudo systemctl start borgmatic.timer
|
|
|
|
|
|
|
|
Feel free to modify the timer file based on how frequently you'd like
|
|
|
|
borgmatic to run.
|
2016-07-04 07:07:53 +02:00
|
|
|
|
|
|
|
|
2014-11-27 18:29:31 +01:00
|
|
|
## Running tests
|
2014-11-18 06:57:44 +01:00
|
|
|
|
2015-03-15 18:14:30 +01:00
|
|
|
First install tox, which is used for setting up testing environments:
|
2014-11-18 06:57:44 +01:00
|
|
|
|
2015-03-15 18:14:30 +01:00
|
|
|
pip install tox
|
2014-11-18 06:57:44 +01:00
|
|
|
|
2015-03-15 18:14:30 +01:00
|
|
|
Then, to actually run tests, run:
|
2014-11-18 06:57:44 +01:00
|
|
|
|
2015-03-15 18:14:30 +01:00
|
|
|
tox
|
2014-11-18 06:57:44 +01:00
|
|
|
|
|
|
|
|
2015-02-28 20:03:22 +01:00
|
|
|
## Troubleshooting
|
|
|
|
|
|
|
|
### Broken pipe with remote repository
|
|
|
|
|
2016-06-10 20:21:53 +02:00
|
|
|
When running borgmatic on a large remote repository, you may receive errors
|
|
|
|
like the following, particularly while "borg check" is validating backups for
|
2015-02-28 20:03:22 +01:00
|
|
|
consistency:
|
|
|
|
|
|
|
|
Write failed: Broken pipe
|
2016-06-10 20:21:53 +02:00
|
|
|
borg: Error: Connection closed by remote host
|
2015-02-28 20:03:22 +01:00
|
|
|
|
|
|
|
This error can be caused by an ssh timeout, which you can rectify by adding
|
|
|
|
the following to the ~/.ssh/config file on the client:
|
|
|
|
|
|
|
|
Host *
|
|
|
|
ServerAliveInterval 120
|
|
|
|
|
|
|
|
This should make the client keep the connection alive while validating
|
|
|
|
backups.
|
|
|
|
|
|
|
|
|
2017-07-23 06:07:09 +02:00
|
|
|
### libyaml compilation errors
|
|
|
|
|
|
|
|
borgmatic depends on a Python YAML library (ruamel.yaml) that will optionally
|
|
|
|
use a C YAML library (libyaml) if present. But if it's not installed, then
|
|
|
|
when installing or upgrading borgmatic, you may see errors about compiling the
|
|
|
|
YAML library. If so, not to worry. borgmatic should install and function
|
|
|
|
correctly even without the C YAML library. And borgmatic won't be any faster
|
|
|
|
with the C library present, so you don't need to go out of your way to install
|
|
|
|
it.
|
|
|
|
|
|
|
|
|
2015-07-22 06:29:40 +02:00
|
|
|
## Issues and feedback
|
2014-11-18 03:35:47 +01:00
|
|
|
|
2016-06-10 20:21:53 +02:00
|
|
|
Got an issue or an idea for a feature enhancement? Check out the [borgmatic
|
2016-06-13 07:40:04 +02:00
|
|
|
issue tracker](https://tree.taiga.io/project/witten-borgmatic/issues?page=1&status=399951,399952,399955). In
|
2015-09-03 03:45:15 +02:00
|
|
|
order to create a new issue or comment on an issue, you'll need to [login
|
|
|
|
first](https://tree.taiga.io/login).
|
2015-07-22 06:29:40 +02:00
|
|
|
|
|
|
|
Other questions or comments? Contact <mailto:witten@torsion.org>.
|