Rsync broken pipe

Samuel Mutel

Dabbler
Joined
Feb 21, 2020
Messages
21
Hello,

I would like to backup some files on a server. I used a FreeNas rsync task for this.
There is 161G of data in the targeted server. However the rsync task failed at 61G every time with a broken pipe message.

Any idea of the root cause of this issue ?
Thanks.
 

Samuel Mutel

Dabbler
Joined
Feb 21, 2020
Messages
21
I tried to start the rsync command manually and redirect the logs into a file.
Code:
/usr/local/bin/rsync -vz --delete-delay -r -t --exclude=lost+found --stats --inplace --bwlimit=50000 -e 'ssh -p 22 -o BatchMode=yes -o StrictHostKeyChecking=yes' xxxxxx@xxxxxx:/opt/mysql-backups/xxxxxx/last_backup/ /mnt/bigone/xxxxxx/xxxxxx


I received this error message:
Code:
receiving incremental file list
Fssh_packet_write_wait: Connection to xx.xx.xx.xx port 22: Broken pipe
rsync: [generator] write error: Broken pipe (32)
rsync: connection unexpectedly closed (19770 bytes received so far) [receiver]
rsync error: error in socket IO (code 10) at io.c(820) [generator=3.1.3]
rsync error: error in rsync protocol data stream (code 12) at io.c(226) [receiver=3.1.3]
 

Samuel Mutel

Dabbler
Joined
Feb 21, 2020
Messages
21
receiving incremental file list
./
file1
file2
file3
file4
file5
file6
Fssh_packet_write_wait: Connection to xx.xx.xx.xx port 22: Broken pipe
rsync: [generator] write error: Broken pipe (32)
rsync: connection unexpectedly closed (165738 bytes received so far) [receiver]rsync error: error in socket IO (code 10) at io.c(820) [generator=3.1.3]
rsync error: received SIGUSR1 (code 19) at main.c(1442) [receiver=3.1.3]

The file6 has a size of 29G. Is-it due to the large file ?
 
Top