Displaying 4 results from an estimated 4 matches for "hosttobackup".
2005 Sep 13
1
exclueding two directories
Hi.
I am taking backup in following :
rsync -az -e ssh --delete $HOSTTOBACKUP:$SOURCE
$DR_BACKUP_DIR/hourly.0 >$tempfile 2>&1
I need to exclue the following:
$HOSTTOBACKUP/Dir1
and
$HOSTTOBACKUP/Dir2
how can I exclude?
2007 Jun 04
1
Exclude option not working
...exclude but I find once the whole
rsync is completed the directory still gets copied in target location.
Here is what I am tryng to do:
rsync -az -t -e ssh -vv --delete --delete-excluded
opt/mscdr/arb821/Server/logs --delete-excluded
opt/mscdr/arb821/Server/altavistaDir --exclude --bwlimit=1000
$HOSTTOBACKUP:$SOURCE $DR_BACKUP_DIR/daily.0 >$tempfile 2>&1
Here the logs and altavistaDir is getting copied which must be excluded as
per the reference material I refered from the internet.
http://rsync.samba.org/ftp/rsync/rsync.html
I would appreciate your help in this regards as I dont have any o...
2007 Jul 09
1
Exclude not working
...e
sub-directories also.
E1=/opt/mscdr/arb821/Server/transmissionData
E2=/opt/mscdr/arb821/Server/logs
E3=/opt/mscdr/arb821/Server/temp
E4=/opt/mscdr/arb821/Server/altavista
rsync -az -t -e ssh -vv --delete --exclude $E1 --exclude $E2 --exclude $E3
--exclude $E4 --delete-excluded --bwlimit=1000 $HOSTTOBACKUP:$SOURCE
$TARGET >$tempfile 2>&1
Regards,
Madhavan
-------------- next part --------------
HTML attachment scrubbed and removed
2005 Aug 23
2
rsync problem
Hi,
My rsync is stopped working suddenly I got following in verbose and
log,
mkstemp failed: No such file or directory
and
rsync error: received SIGUSR1 or SIGINT (code 20) at rsync.c(229)
my rsync code :
rsync -az -e ssh --delete $HOSTTOBACKUP:$SOURCE
$DR_BACKUP_DIR/daily.0 >$tempfile 2>&1
the same code was working last week, what will be the problem, how
to proceed to fix? Any one faced same kind of problems?