Re: Rsync 3

2008-09-30 Thread Madhavan Chari
Hi,

Thanks a lot for sharing the information, I really appreciate your help.
I have one more question regarding the installation of rsync 3.1.

We want to install rsync 3.1 in our Unix AIX box. Can any one let me know
the exact steps to install the rsync 3.1.


Regards,
Madhavan

On Thu, Sep 25, 2008 at 2:34 PM, Eberhard Moenkeberg [EMAIL PROTECTED]wrote:

 Hi,

 On Thu, 25 Sep 2008, Madhavan Chari wrote:

  We want to use the rsync 3 for incremental file transfer of our File
 system
  from one box to another, however there are about a million files
  to be copied, so just wanted to know by any one of your's previous
  experience with rsync 3, will these many files get copied at first time
 and
  incrementally in the subsequent run of the crontab.

 These are statistics of a local rsync-2.6.8 run (src and dst on
 same machine) which needed 150 minutes:


 Number of files: 5986503
 Number of files transferred: 7767
 Total file size: 4871562029029 bytes
 Total transferred file size: 26598656932 bytes
 Literal data: 24673752889 bytes
 Matched data: 1924901628 bytes
 File list size: 195739303
 File list generation time: 1381.047 seconds
 File list transfer time: 0.000 seconds
 Total bytes sent: 3988352
 Total bytes received: 24874875277

 sent 3988352 bytes  received 24874875277 bytes  3223277.01 bytes/sec
 total size is 4871562029029  speedup is 195.81


 Viele Grüße
 Eberhard Mönkeberg ([EMAIL PROTECTED], [EMAIL PROTECTED])

 --
 Eberhard Mönkeberg
 Arbeitsgruppe IT-Infrastruktur
 E-Mail: [EMAIL PROTECTED]  Tel.: +49 (0)551 201-1551
 -
 Gesellschaft für wissenschaftliche Datenverarbeitung mbH Göttingen (GWDG)
 Am Fassberg 11, 37077 Göttingen
 URL:http://www.gwdg.de E-Mail: [EMAIL PROTECTED]
 Tel.:   +49 (0)551 201-1510Fax:+49 (0)551 201-2150
 Geschäftsführer:Prof. Dr. Bernhard Neumair
 Aufsichtsratsvorsitzender:  Prof. Dr. Christian Griesinger
 Sitz der Gesellschaft:  Göttingen
 Registergericht:Göttingen  Handelsregister-Nr. B 598
 -
 --
 Please use reply-all for most replies to avoid omitting the mailing list.
 To unsubscribe or change options:
 https://lists.samba.org/mailman/listinfo/rsync
 Before posting, read: 
 http://www.catb.org/~esr/faqs/smart-questions.htmlhttp://www.catb.org/%7Eesr/faqs/smart-questions.html

-- 
Please use reply-all for most replies to avoid omitting the mailing list.
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Rsync 3

2008-09-25 Thread Madhavan Chari
Hi Everyone,

We want to use the rsync 3 for incremental file transfer of our File system
from one box to another, however there are about a million files
to be copied, so just wanted to know by any one of your's previous
experience with rsync 3, will these many files get copied at first time and
incrementally in the subsequent run of the crontab.


Replies will be much appreciated.

Thanks in advance.
Madhavan
-- 
Please use reply-all for most replies to avoid omitting the mailing list.
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

rsync error

2007-12-18 Thread Madhavan Chari
Hi,

I am doing a delta transmission through rsync from a SOURCE to TARGET
with same folder  name.

My config files looks as below:

HOSTTOBACKUP1=ctlrws002
SOURCE1=/opt/mscdr/
TARGET1=/opt/mscdr/


I am getting a error while running the cron job for the above config
and sh file as below

Error starts here:

write failed on IBMIHS/logs/access.log : Error 0

Received signal 30. (no core)
rsync: writefd_unbuffered failed to write 4092 bytes: phase unknown:
Broken pipe
rsync error: error in rsync protocol data stream (code 12) at io.c(515)
Error ends here.

The IBMIHS is under /opt/mscdr folder in SOURCE. Please let me know as
what could be wrong in this case. How can the access.log be copied to
TARGET as well.

Thanks in advance.
Regards,
Madhavan Chari
-- 
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html


Re: Exclude not working

2007-07-12 Thread Madhavan Chari

Hi,

Here is my config file

HOSTTOBACKUP1=ctlrws001
SOURCE1=/opt/mscdr/arb821/Server
TARGET1=/opt/mscdr/daily.0/arb821/Server


and the my script

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 21

Regards,
Madhavan

On 7/10/07, Wayne Davison [EMAIL PROTECTED] wrote:


On Tue, Jul 10, 2007 at 03:11:05PM +0200, Giuliano Gavazzi wrote:
 In the last sentence the term file is  used, that for consistency
 should not include directories.

There is some inconsistency in the word file since it includes dirs in
its generic sense, but can be used as a short-hand for regular file
(or sometimes non-dir) which excludes dirs.  I've improved that section
to try to avoid this ambiguity.

..wayne..
--
To unsubscribe or change options:
https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

-- 
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Exclude not working

2007-07-09 Thread Madhavan Chari

Hi,

I am facing a problem with rsync exclude filter. It seems even though I am
trying to exclude few directories under my directory
structure, it is still getting copied every time it runs. The folder
structure is as below.

Source Directory Structure
opt
  msc
  arb821
   Server
transmissionData
logs
temp
altavista


This is how I am trying to exclude the directories. All the directories have
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 21

Regards,
Madhavan
-- 
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

rsync error: received SIGUSR1 or SIGINT (code 20) at rsync.c(229)

2007-06-13 Thread Madhavan Chari

Hi,

I am encountering a error saying-rsync error: received SIGUSR1 or SIGINT
(code 20) at rsync.c(229).
This error was encountered after 2.5hrs of rsync. What does this exactly
mean?
I am pretty new the whole concept so not able to figure it out.

Regards,
Madhavan Chari
-- 
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html