Trying to update files on a server, with the rsync
command:
rsync -ravq -e "ssh -o ConnectTimeout=2 -o ServerAliveInterval=2 -ServerAliveCountMax=2" --delete ./local_dir user@$SERVER:/dest_dir
corrupt packet
errors keep getting thrown, specifically:
rsync: writefd_unbuffered failed to write 4092 bytes to socket [sender]: Broken pipe (32)
rsync: connection unexpectedly closed (11337 bytes received so far) [sender]
rsync error: unexplained error (code 255) at /home/lapo/package/rsync-3.0.9-1/src/rsync-3.0.9/io.c(605) [sender=3.0.9]
This is probably related to a ssh
timeout, as it seems to happen with large(r) files. Also, I keep getting timeouts using WinSCP. This is happening only to me; several of the people I work with that use this server do not have the same problem.
Using rsync
from a Cygwin terminal in Windows 7, against a Centos 6.3 server.
I am not sure what other information might be useful or how to obtain it. I will update the question or add comments as per any suggestions.
How should I solve this?
Thanks very much!