项目作者: dsnet

项目描述 :
Daemon for replicating ZFS datasets.
高级语言: Go
项目地址: git://github.com/dsnet/zsync.git
创建时间: 2017-09-03T04:01:03Z
项目社区:https://github.com/dsnet/zsync

开源协议:BSD 3-Clause "New" or "Revised" License

下载


ZFS syncing daemon

Introduction

The zsync daemon auto-snapshots ZFS datasets, replicates datasets, and
auto-deletes stale snapshots. The replication can be performed across machines
in either a push or pull mechanism using either SSH or local OS subprocesses.

This only tested with ZFS on Linux.

Usage

Delegate ZFS permissions

In order for the daemon to properly perform ZFS operations, the zfs allow
feature must be used to enable permissions on certain operations.

The following permissions should be granted:

  1. # On all sources:
  2. sudo zfs allow $USER send,snapshot,destroy,mount $DATASET
  3. # On all mirrors:
  4. sudo zfs allow $USER receive,create,mount,mountpoint,readonly,snapshot,destroy,mount $DATASET

The mountpoint and readonly properties are only need when performing the
first replication, where the receiving side sets mountpoint=none and
readonly=on.

The zpool and zfs tool must work without sudo.
See the “Changes in Behavior” section of the ZoL v0.7.0 release.

Build the daemon

go get -u github.com/dsnet/zsync

The instruction steps below assume $GOPATH/bin is in your $PATH,
so that the zsync binary can be executed directly from the shell.

Create configuration file

The operation of zsync is configured using a JSON configuration file,
where the full list of features can be listed by running zsync -help.

Here is an example configuration file (adjust as appropriate):

  1. {
  2. "SSH": {
  3. "KeyFiles": ["/home/user/.ssh/id_rsa"],
  4. "KnownHostFiles": ["/home/user/.ssh/known_hosts"],
  5. },
  6. "AutoSnapshot": {"Cron": "@daily", "Count": 7},
  7. "Datasets": [{
  8. "Source": "//localhost/tank/dataset",
  9. "Mirrors": ["//user@remotehost:22/tank/dataset-mirror"],
  10. }],
  11. }

This example auto-snapshots daily and only keeps 7 snapshots.
It replicates tank/dataset on the local machine to tank/dataset-mirror
on a remote machine using an SSH push.

Running the daemon

Start the daemon with:

  1. zsync /path/to/config.json