I am trying to make rsync to transfer 500 GB files from one server to another. I use this command:
rsync -vrPt -e 'ssh -p 2222' uname@server.com : / folder / newfolder
It works and syncs accurately for 10/15 minutes, then it throws this error every time;
rsync: connection unexpectedly closed (5321016884 bytes received so far) [receiver] rsync: writefd_unbuffered could not write 4 bytes to socket [generator]: Broken pipe (32) Error rsync: error in rsync protocol stream (code 12) in io.c (1525) [generator = 3.0.6] rsync error: error in the rsync protocol data stream (code 12) in io.c (600) [receiver = 3.0.6]
What is the problem?
source
share