Displaying 2 results from an estimated 2 matches for "zahlv".
Did you mean:
zahl
2002 Apr 19
2
out of memory in build_hash_table
...a couple of error
messages (both refer to the same problem as far as I know):
ERROR: out of memory in build_hash_table
rsync error: error allocating core memory buffers (code 22) at util.c(232)
The following are the commands being used from a bash script (not the whole
script of course):
rsync -zaHlv --progress -e /usr/bin/ssh --exclude log --exclude exim /var/*
Server_IP:/home/host/var 2>>$error_log
rsync -zaHlv --progress -e /usr/bin/ssh /etc/* Server_IP:/home/host/etc
2>>$error_log
rsync -zaHlv --progress -e /usr/bin/ssh /usr/local/apache/conf/*
Server_IP:/home/host/usr/local/apa...
2003 Mar 08
0
--force --delete
...l
a snapshot of the files/directories are taken. We have a backup script that
runs daily on each server and the backups are made to a remote machine on
the same network. The following is the exact rsync command we are using
(IPs switched) for the "home" filesystem:
/usr/local/bin/rsync -zaHlv --force --delete --progress -e /usr/bin/ssh
/home 192.168.1.2:/home3/backup 2>>$error_log
We also have a script on the backup server that runs weekly creating a
snapshot of each backup. Basically, the script just creates links to files
on the full backup so that's where I thought the pr...