Hi, List! I have a problem with rsync. I was trying to synchronize directory trees on 2 servers and got following error: multiplexing overflow 101:7104843 [receiver] rsync error: error in rsync protocol data stream (code 12) at io.c(809) Complete rsync's output: > /usr/local/bin/rsync -avzp user@host:remote_path local_path receiving file list ... done ./ DelphiStudio7.rar readme.koi8.txt readme.txt .ssh/ backup/ ssl/ ssl/data/ ssl/htdocs/ www/ www/data/ www/htdocs/ www/htdocs/.htaccess www/htdocs/DelphiStudio7.rar multiplexing overflow 101:7104843 [receiver] rsync error: error in rsync protocol data stream (code 12) at io.c(809) What does this mean? I've googled error message but couldn't find anything relevant. Any help will be greatly appreciated! Thanks in advance -- Regards, Eugene Kosov.
On Fri, Mar 17, 2006 at 07:16:19PM +0300, ????? ??????? wrote:> multiplexing overflow 101:7104843 [receiver]This indicates that the protocol got corrupted somehow because that is saying that the receiver got a MSG_DELETED message with a 7104843-byte buffer attached (which rsync is telling you is too big), but you're not even deleting files. What version of rsync are you using? ..wayne..