rsync on rh 6.2

2002-02-20 Thread sachin rase
i am new to rsync can i sync mysql database on 2 different server how? see u mailing sachin __ Do You Yahoo!? Yahoo! Sports - Coverage of the 2002 Olympic Games http://sports.yahoo.com To unsubscribe or change options: http://lists.samba.org

Re: [patch] configurable RSYNCD_CONF

2002-02-20 Thread Einar Karttunen
On 20.02.02 11:26 -0800(+), Martin Pool wrote: > On 21 Feb 2002, Ayamura KIKUCHI <[EMAIL PROTECTED]> wrote: > > I prefer configurable RSYNCD_CONF by autoconf to RSYNCD_CONF in > > rsync.h. > > Hi, Ayamura. > > I support you are already aware of --config when starting the daemon. > > What re

Re: #3980 Re: rsync-2.5.3pre1 preview release -- please try it

2002-02-20 Thread Jos Backus
On Wed, Feb 20, 2002 at 08:31:51PM -0600, Albert Chin wrote: > > This seems to break FreeBSD... > > How? Works fine with FreeBSD 4.3-STABLE. Breaks on -current: gcc -I. -I. -g -O2 -DHAVE_CONFIG_H -Wall -W -I./popt -c lib/getaddrinfo.c -o lib/getaddrinfo.o lib/getaddrinfo.c: In function `get_ad

Re: #3980 Re: rsync-2.5.3pre1 preview release -- please try it

2002-02-20 Thread Albert Chin
On Wed, Feb 20, 2002 at 04:46:28PM -0800, Martin Pool wrote: > On 19 Feb 2002, Albert Chin <[EMAIL PROTECTED]> wrote: > > On Mon, Feb 18, 2002 at 06:23:04PM -0800, Martin Pool wrote: > > > Available now from samba.org and all mirrors. Please report bugs, > > > compilation problems, etc. If there

Re: rsync-2.5.3pre1 on RH5.2

2002-02-20 Thread Martin Pool
On 20 Feb 2002, Martin Pool <[EMAIL PROTECTED]> wrote: > Apparently the getaddrinfo stuff breaks something on RH5.2. I guess > that is not a common platform anymore, but there's a machine here that > people care about. I'll try and patch it. Apparently this is a known bug. If you have such a m

rsync-2.5.3pre1 on RH5.2

2002-02-20 Thread Martin Pool
Apparently the getaddrinfo stuff breaks something on RH5.2. I guess that is not a common platform anymore, but there's a machine here that people care about. I'll try and patch it. -- Martin To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync Before posting,

#3980 Re: rsync-2.5.3pre1 preview release -- please try it

2002-02-20 Thread Martin Pool
On 19 Feb 2002, Albert Chin <[EMAIL PROTECTED]> wrote: > On Mon, Feb 18, 2002 at 06:23:04PM -0800, Martin Pool wrote: > > Available now from samba.org and all mirrors. Please report bugs, > > compilation problems, etc. If there are no major issues I think I > > will put this out as 2.5.3 shortly

Re: push data instead of pull

2002-02-20 Thread tim . conway
That was my point. ro and rw were both /tmp. i made ro first, tested it, duplicated Gautam's error, copied it, changed "yes" to "no" on the "read only = " line, and got success. The really odd thing was tht i got meaningful error on ro if i was tracing the rsyncd (started as "truss -f rsync

Rsync 2.5.2 segmentation fault on Solaris 7

2002-02-20 Thread Inu Wan
When running rsync between 2 Solaris 7 machines installed with rsync 2.5.2 using the following command:   rsync -avz -e ssh --delete me@srcMachine:/someDir destDir   rsync was downloaded as a binary from rsync.samba.org.  The first time rsync is invoked and the destDir is empty, rsync works find. 

Re: [patch] configurable RSYNCD_CONF

2002-02-20 Thread Martin Pool
On 21 Feb 2002, Ayamura KIKUCHI <[EMAIL PROTECTED]> wrote: > I prefer configurable RSYNCD_CONF by autoconf to RSYNCD_CONF in > rsync.h. Hi, Ayamura. I support you are already aware of --config when starting the daemon. What reason did you have for changing the compiled-in default? I suppose I

Re: push data instead of pull

2002-02-20 Thread Martin Pool
> >rsync rsync.h alta::ro > rsync: read error: Connection reset by peer > rsync error: error in rsync protocol data stream (code 12) at io.c(151) "Connection reset by peer" often means the remote rsync crashed. If you see this message when the only problem is that the remote module is read onl

Re: [PATCH] rsync on cygwin - textmode config files

2002-02-20 Thread Martin Pool
> (1) --no-detach OK, already fixed. --no-fork would be good to add in the future -- it can be handy for debugging. > (2) ctrl-c Fixed recently by Colin Walters. > O_TEXT and O_BINARY Good. It might be cleaner to #ifdef on O_BINARY or something that will also work on MSVC++. > +#ifdef __CY

[patch] configurable RSYNCD_CONF

2002-02-20 Thread Ayamura KIKUCHI
I prefer configurable RSYNCD_CONF by autoconf to RSYNCD_CONF in rsync.h. --- rsync.h.origTue Feb 19 06:46:49 2002 +++ rsync.h Thu Feb 21 00:59:11 2002 @@ -26,7 +26,8 @@ #define RSYNC_RSH_ENV "RSYNC_RSH" #define RSYNC_NAME "rsync" -#define RSYNCD_CONF "/etc/rsyncd.conf" + +/* RSYNC

Re: UnixWare7.1.1 -> Linux (2.4.10)

2002-02-20 Thread Rusty Carruth
Antonio José Morán <[EMAIL PROTECTED]> wrote: > Hi! > > I have some troubles using rsync-2.5.2. > ... I don't know if this is one of the known problems with 2.5.2, but there are some serious problems with 2.5.2, I'd advise dumping it immediately and getting the most recent version, or wait

UnixWare7.1.1 -> Linux (2.4.10)

2002-02-20 Thread Antonio José Morán
Hi! I have some troubles using rsync-2.5.2. The local system is Unixware 7.1.1 and the remote is Linux (2.4.10), when I launch a rsync command like this: rsync -arve ssh -blocking-io /directory/source IP:/directory/target sometimes, the rsync command ha

Re: [PATCH] rsync on cygwin - textmode config files

2002-02-20 Thread Ville Herva
On Wed, Feb 20, 2002 at 08:27:07AM +0200, [Ville Herva] wrote: > >(2) Secondly, if I connect to rsync daemon from another machine and hit >ctrl-c at the client end during transfer, the rsync daemon exists (not >just the connection handler process, but every rsync). I guess th