search for: read_timeout

Displaying 20 results from an estimated 93 matches for "read_timeout".

2001 Sep 07
6
unexpected EOF in read_timeout
...ror: receiving file list ... done htdocs/acescounseling/logs/ htdocs/adihome/logs/ . . htdocs/coupons/logs/error_log htdocs/court/logs/combined_log htdocs/cowgirl/logs/combined_log htdocs/cowgirl/logs/error_log htdocs/cowgirl/logs/ssl_log Connection to nova closed by remote host. unexpected EOF in read_timeout The rsync commands I'm using in a script are listed below. The first four complete with no errors; it's the last one (htdocs, which contains the Apache virtual directories) that errors out. (With over 300 virtuals, htdocs has quite a few files, some of them large log files.) /usr/lo...
2011 May 15
0
rsync client and server processes, all hanging in read_timeout()
I'm backing my Ubuntu server up to an HFS+ case-sensitive volume on our iMac using the below rsync command and it hangs at the end. Compiling rsync 3.0.8 by hand with CFLAGS=-g on both systems shows that all rsync processes are in read_timeout(). $ rsync \ --delete-delay \ -P \ -v \ -A \ -X \ --fake-super \ -aH \ --numeric-ids \ --exclude '/dev' \ --exclude '/home/OLD_OS' \ --exclude '/media' \ --exclude '/mnt' \ --exclude '/proc' \ --exclude '/sys'...
2007 Dec 14
0
rsync dead loop (almost) forever in read_timeout() if remote host down
Hi All This can be reproduced easily. run rsync under gdb and set a break point at read_timeout(). then after rsync talk with remote rsync daemon and stop at this function, turn off remote machine directly. then let rsync run and it will run forever in this function. if we just kill remote rsync daemon, it is fine and quickly detected, because OS do clean up work. But if power off the box di...
2002 Feb 14
0
unexpected EOF in read_timeout (was Re[2]: [Fwd: Re: meaning of "IO Error: skipping the delete...."]])
...7680,26721,25451,25970), ".\n" ' "There are some who call me.... Tim?" Dave Dykstra <dwd@bell-labs.com> 02/13/2002 12:20 PM To: Tim Conway/LMT/SC/PHILIPS@AMEC cc: rsync@lists.samba.org Subject: Re: Re[2]: unexpected EOF in read_timeout (was Re[2]: [Fwd: Re: meaning of "IO Error: skipping the delete...."]]) Classification: I'm not sure whether the SELECT_TIMEOUT issue is relevant to this thread or another one, but it's good to know that you haven't seen the problem since 2.5.0 where Tridge put i...
2002 Feb 14
1
unexpected EOF in read_timeout (was Re[2]: [Fwd: Re: meaning of "IO Error: skipping the delete...."]])
...call me.... Tim?" Rusty Carruth <rcarruth@tempe.tt.slb.com> Sent by: rsync-admin@lists.samba.org 02/13/2002 08:23 AM To: nitin.agarwal@timesgroup.com cc: rsync@lists.samba.org (bcc: Tim Conway/LMT/SC/PHILIPS) Subject: Re[2]: unexpected EOF in read_timeout (was Re[2]: [Fwd: Re: meaning of "IO Error: skipping the delete...."]]) Classification: Nitin Agarwal <nitin.agarwal@timesgroup.com> wrote: > Dear Mr. Rusty, > We have not defined the timeout parameter in the configuration file. That means no timeout (by > def...
2009 Jun 15
1
NoMethodError: undefined method `password_reset_instructions' for UserNotifier:Class
...ain, user, secret, authtype) raise IOError, ''SMTP session already started'' if @started check_auth_args user, secret, authtype if user or secret sock = timeout(@open_timeout) { TCPSocket.open(@address, @port) } @socket = Net::InternetMessageIO.new(sock) @socket.read_timeout = 60 #@read_timeout check_response(critical { recv_response() }) do_helo(helodomain) raise ''openssl library not installed'' unless defined?(OpenSSL) starttls ssl = OpenSSL::SSL::SSLSocket.new(sock) ssl.sync_close = true ssl.connect @socket = Net::I...
2012 Feb 06
1
Rsync v2.6.9 hangs
Hi all We have a legacy system, which utilises rsync for file transfer - but occasionally hangs on the clinet. We tracked this down to the read_timeout function in io.c. It performs a select(), which appears to return a zero, so the read_timeout function never exists. An strace shows what happens : [root at tcu ~]# strace -p 10566 Process 10566 attached - interrupt to quit select(4, [3], [], NULL, {33, 764484}) = 0 (Timeout) select(4, [3], [], N...
2002 Jul 29
2
rsync from Windows and Linux over ssh
...ice on Windows 2000. I've been trying to copy some files using RSYNC on linux machine running RH Linux 7.2 kernel 2.4.7 from Windows 2000 machines using the following command: $rsync -avz -e ssh <windows-machine>:/rsync/* . but i'm getting the following error "unexpected EOF in read_timeout". I'm running Openssh 3.4p1 I tried to find info on the archives but they seem not related to this specific problem. I'd appreciate if any of you gurus help in this issue. Thanks, Peram __________________________________________________ Do You Yahoo!? Yahoo! Health - Feel better,...
2001 Aug 15
2
EOF erors
I am new to using rsync so I apologize if this has been answered before. I still get and unexpected EOF in read_timeout error after I apply all the patches. Is there another fix that I can try? Thanks greg -------------- next part -------------- HTML attachment scrubbed and removed
2001 Nov 30
2
problem with 2.4.7pre4
rsync: connection unexpectedly closed (0 bytes read so far) rsync error: error in rsync protocol data stream (code 12) at io.c(139) Also, on 2.4.6 I was getting this: access_log write failed on access_log : Success unexpected EOF in read_timeout THis is about an 800meg file I'm trying to copy. Thanks -jeremy -- The trouble with being poor is that it takes up all your time.
2002 Jan 13
0
rsynd-2.5.1 / io.c patches
...fd, char *buf, int len); +static void read_loop(int fd, void *buf, int len); static void check_timeout(void) { @@ -163,9 +164,11 @@ * give a better explanation. We can tell whether the connection has * started by looking e.g. at whether the remote version is known yet. */ -static int read_timeout (int fd, char *buf, int len) +static int read_timeout (int fd, void *buf1, int len) { int n, ret=0; + unsigned char * buf; + buf = (unsigned char *)buf1; io_flush(); @@ -236,8 +239,10 @@ /*! Continue trying to read len bytes - don't return until len has...
2008 Aug 18
8
DO NOT REPLY [Bug 5701] New: deadlock on local rsyncing, bisected to commit f303b749f2843433c9acd8218a4b9096d0d1bb8d
...eceiving side to ensure that the --delete-during code will not delete in a directory prior to receiving an I/O error for that directory (or not receiving it, as the case may be). $ gstack 22366 #0 0x0000000000a24ad3 in __select_nocancel () from /lib64/libc.so.6 #1 0x00007fa36509b660 in read_timeout () from /proc/22366/exe #2 0x00007fa36509bb86 in read_loop () from /proc/22366/exe #3 0x00007fa36509a241 in readfd_unbuffered () from /proc/22366/exe #4 0x00007fa36509bd33 in readfd () from /proc/22366/exe #5 0x00007fa36509c956 in read_ndx () from /proc/22366/exe #6 0x00007fa36507cc20 in read_...
2008 Jul 24
0
Errno::EBADF Send an Email in Rails using GMail
...ain, user, secret, authtype) raise IOError, ''SMTP session already started'' if @started check_auth_args user, secret, authtype if user or secret sock = timeout(@open_timeout) { TCPSocket.open(@address, @port) } @socket = Net::InternetMessageIO.new(sock) @socket.read_timeout = 60 #@read_timeout #@socket.debug_output = STDERR #@debug_output check_response(critical { recv_response() }) do_helo(helodomain) if starttls raise ''openssl library not installed'' unless defined?(OpenSSL) ssl = OpenSSL::SSL::SSLSocket.new(sock)...
2001 Aug 22
1
@RSYNC EXIT / @RSYNC EOF
...number of bytes * read. If no bytes can be read then exit, never return a number <= 0. * @@ -119,13 +163,14 @@ static int no_flush; * give a better explanation. We can tell whether the connection has * started by looking e.g. at whether the remote version is known yet. */ -static int read_timeout(int fd, char *buf, int len) +static int read_timeout (int fd, char *buf, int len) { int n, ret=0; io_flush(); while (ret == 0) { + /* until we manage to read *something* */ fd_set fds; struct timeval tv; int fd_count = fd+1; @@ -165,41 +210,27 @@ static int read_timeout(int fd,...
2009 Apr 09
1
Mailing error in Rails 2.3.2
...IOError, ''SMTP session already started'' if @started #check_auth_args user, secret, authtype if user or secret check_auth_args user, authtype if user or secret sock = timeout(@open_timeout) { TCPSocket.open(@address, @port) } @socket = Net::InternetMessageIO.new(sock) @socket.read_timeout = 60 #@read_timeout @socket.debug_output = STDERR #@debug_output check_response(critical { recv_response() }) do_helo(helodomain) raise ''openssl library not installed'' unless defined?(OpenSSL) starttls ssl = OpenSSL::SSL::SSLSocket.new(sock) ssl.sync_close = true ssl.con...
2007 Jul 24
1
ssh client does not timeout if the network fails after ssh_connect but before ssh_exchange_identification, even with Alive options set
Hello, I am testing ssh with occasional network disconnection between server and client during these days. I found ssh sometimes hangs if the disconnection happens after the connection is established but before ssh_exchange_identification completes. The ssh configuration files show that both client and server alive options are set. In /etc/ssh/ssh_config: # Send keepalive messages to the server.
2005 Jun 10
1
problem syncing files on RAM in embedded device
...lash space. the above operation is done in two phases. one is a direct function call which does the above operation and the second is in a while loop which keeps doing the operation every one hour. For first phase an error is thrown as below. write failed on appl.gz: Success unexpected EOF in read_timeout after giving the above error the, syncing of files terminates. From the second phase onwards, the syncing of the same file with the same options as given above works well. On experimenting, the same code worked well when done with the --temp-dir=/config/ i.e, temporary redirected to flash ie,...
2006 Dec 05
3
megatec over USB - new driver patch
...0 +0300 @@ -23,7 +23,6 @@ #include "main.h" -#include "serial.h" #include "megatec.h" #include <stdio.h> @@ -44,9 +43,6 @@ #define IDENT_MAXTRIES 5 #define IDENT_MINSUCCESS 3 -#define SEND_PACE 100000 /* 100ms interval between chars */ -#define READ_TIMEOUT 2 /* 2 seconds timeout on read */ - #define MAX_START_DELAY 9999 #define MAX_SHUTDOWN_DELAY 99 @@ -167,7 +163,6 @@ /* I know, macros should evaluate their arguments only once */ #define CLAMP(x, min, max) (((x) < (min)) ? (min) : (((x) > (max)) ? (max) : (x))) - static float...
2005 Apr 27
7
[Bug 2654] timeout is always triggered with 2.6.4
https://bugzilla.samba.org/show_bug.cgi?id=2654 wayned@samba.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED ------- Additional Comments From wayned@samba.org 2005-04-27 02:21 ------- The generator's setting of the ignore_timeout
2007 Dec 28
2
hang with rsync 3.0.0pre7 doing local copy
...go --stats -D --numeric-ids -x --exclude-from=/backup/0/oudeserver/laatste/exclude --link-dest=/backup/0/oudeserver/20071225/tree /var/lib/vservers/oudeserver/ /backup/0/oudeserver/laatste/tree # gdb -p 3712 (gdb) bt #0 0x00002ba78dcf3b63 in select () from /lib/libc.so.6 #1 0x0000000000423ee1 in read_timeout (fd=5, buf=0x7fff1d3ac5c0 "\001", len=4) at io.c:653 #2 0x00000000004243e2 in read_loop (fd=5, buf=0x7fff1d3ac5c0 "\001", len=4) at io.c:985 #3 0x00000000004244d5 in readfd_unbuffered (fd=5, buf=0x7fff1d3adc70 "", len=1) at io.c:1022 #4 0x0000000000424a93 in readfd...