On Mon, Jan 08, 2001 at 09:21:36PM +0800, Pratik wrote:
> Hi
>
> we r using rsync version 2.4.4 between solaris 7 & 8 over ssh 1 where rsync is
>running on its own, not as a daemon.
>
> when we run it to push data( about 6000 files) frm solaris 8 to solaris 7
> i get the following error -
> "write failed on saman/ready_zipped_log/Sep2000.zip : Error 0
>
> Received signal 16.
> unexpected EOF in read_timeout"
>
> & when i run it to pull the same data frm solaris 7 to solaris 8
> then ssh session ends with "Exit status 12" bec'z of rsync failure i guess.
>
> however i can always pull or push just a few files at a time quite successfully.
>
> I'll be grateful if anybody can help out of this.
I looked through the code and I don't see how the it can be returning
"Error 0" because the error message is always printed out right after a
system call which should have sett errno to something other than zero.
The signal 16 is SIGUSR1 sent from one rsync process to the other on the
receiving side after it has a problem. Do you happen to be using NFS on
those machines. That connection could be flaky. Rsync works best (most
efficiently and reliably) when it is copying to and from local disks on
each end.
- Dave Dykstra