dump directly to remote HDD over ssh
Dave [Hawk-Systems]
dave at hawk-systems.com
Wed Jul 30 14:46:09 PDT 2003
Number of smaller servers, current doing dumps to secondary drives each night.
Extra copies are then rsync'd to a big storage server for long term archive
<-- currently -->
dump -0u -a -f /backup/usr /usr
rsync -v /backup/usr \
destination.server:/backups/server1/usr.0.`date +%Y%m%d`.dump
</-- currently -->
What we want to do is eliminate the need for the secondary drive if need be, and
do the dump directly over to the big storage server where we can then archive
all the "images" from the one drive.
Am lookiung at something like this, can someone sanity check the syntax for me
please?
<--untested code -->
dump -0 -u -f- /usr | ssh server1 at destination.server \
cat - > /backups/server1/usr.0.`date +%Y%m%d`.dump
</-- untested code -->
thanks
Dave
More information about the freebsd-isp
mailing list