Displaying 1 result from an estimated 1 matches for "destination_machine".
2017 Aug 16
1
Clarifications on getting debug information when rsync freezes
...the rsync is stuck. If I understand from various replies in this email list it must be given as an argument to rsync beforehand?
If I do not want to change something in my current rsync setup, would it be ok to do sth like this on the destination machine:
# 1. find the ssh PID from the source IP
destination_machine $ sudo netstat -atlp | grep "192.168.23"
tcp 0 36 192.168.40.23:ssh 192.168.23.40:49187 ESTABLISHED 915/sshd: abc [priv
# 2. find all related processes
destination_machine $ sudo pstree --show-pids 915
sshd(915)───sshd(1079)───rsync(1082)───rsync(1085)
# 3. then str...