On Thu, Jul 22, 2004 at 04:27:57PM -0400, Don Malloy wrote: > server2 # ./rsync -a --progress --stats file1.db /var/opt/ignite
What I want is the backtrace when the rsync that is failing dies so we can (hopefully) figure out why it is dying. In the above command the client should be the sender, so it appears to be receiving side that is dying. Unfortunately that means that there are two processes to choose from (the two higher-numbered ones). The best thing to do would be to attach a debugger to both of them (each in a separate window). Set a break-point at _exit_cleanup (I forgot that the function is really named with a leading underscore because of some macro shenanigans), and then tell it to "c"ontinue. You'll be able to get a backtrace of what each program was doing when it either died from a signal or chose to exit. You can look around a bit too (e.g. move "up", "l"ook around, and "p"rint some variables). ..wayne.. -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html