Hi, I''m trying to read some rsync error messages. I don''t understand what is the part from the local process, and what is a message from the remote server. Some start with ''rsync:'' and others start with ''rsync error:'', but that is about it. Here is the output from a CRON process (so it has a few different errors in it). rsync: error writing 4092 unbuffered bytes - exiting: Connection timed out rsync error: error in rsync protocol data stream (code 12) at io.c(463) rsync error: received SIGUSR1 or SIGINT (code 20) at main.c(784) rsync: read error: Connection timed out rsync error: error in rsync protocol data stream (code 12) at io.c(162) rsync: connection unexpectedly closed (1096 bytes read so far) rsync error: error in rsync protocol data stream (code 12) at io.c(150) @ERROR: chdir failed rsync: connection unexpectedly closed (33 bytes read so far) rsync error: error in rsync protocol data stream (code 12) at io.c(150) J. -- ........................................ .... Jason C. Leach .... PGP Key: 0x62DDDF75 .... Keyserver: gpg.mit.edu -- To unsubscribe or change options: lists.samba.org/mailman/listinfo/rsync Before posting, read: catb.org/~esr/faqs/smart-questions.html
On Thu, Dec 22, 2005 at 04:52:21PM -0800, Jason C. Leach wrote:> @ERROR: chdir failedThis is the important message from the daemon (which caused the connection to close). This most likely means that the path specified for the module you accessed is incorrect (the daemon''s log file will mention exactly which directory failed). ..wayne..