mirror of
https://git.freebsd.org/ports.git
synced 2025-06-21 12:40:45 -04:00
zrepl is a complete ZFS dataset replication tool written in Go that supports feature detection, bookmarks, and other new features. Significant parts of this port were submitted by woodsb02. Thank you! Submitted by: woodsb02, me Reviewed by: woodsb02 Differential Revision: https://reviews.freebsd.org/D12462
15 lines
700 B
Text
15 lines
700 B
Text
------------------------------------------------------------------------
|
|
zrepl must be configured before it is started the first time.
|
|
- Create the log file /var/log/zrepl.log:
|
|
# service newsyslog restart
|
|
- Teach syslogd to redirect facility local0 to the zrepl.log file:
|
|
# service syslogd reload
|
|
- Modify the %%PREFIX%%/etc/zrepl/zrepl.yml configuration file
|
|
- For remote backups, create the SSH key pair and authorized_keys file
|
|
- Enable the zrepl daemon to start automatically at boot:
|
|
# sysrc zrepl_enable="YES"
|
|
- Start the zrepl daemon:
|
|
# service zrepl start
|
|
|
|
For documentation, refer to https://zrepl.github.io/.
|
|
------------------------------------------------------------------------
|