Re: error allocating core memory buffers (code 22) at util2.c(106) [sender=3.1.2]

2017-04-11 Thread John Hawkinson via rsync
> But at first blush, it appeared that adding - made things hang > forever. Yes. Confirmed against the git HEAD (9e7b8ab7cf66ecd152002926a7da61d8ad862522). Running: rsync -n -iaHJAX $d $b Does some initial work and then gets to: bash-3.2# lldb -p 6458 (lldb) process attach --pi

Re: error allocating core memory buffers (code 22) at util2.c(106) [sender=3.1.2]

2017-04-11 Thread John Hawkinson via rsync
Sorry to keep replying to myself: > Because this is a Time Machine backup, and there were 66 snapshots of a > 1 TB disk consuming about 1.5 TB, there were a *lot* of hard links. Many > of directories rather than individual files, so it's a little Err, whoops? No, I was tired and confused. They ar

Re: error allocating core memory buffers (code 22) at util2.c(106) [sender=3.1.2]

2017-04-11 Thread John Hawkinson via rsync
> I guess I can turn on core dumps and increase (unlimit completely) the > stack size... > > Although it doesn't seem to have segfaulted, so I'm not sure having > core dumps enabled would have helped? Indeed. I reran it on the 50 remaining individual directories, it seems to have made it through

Re: error code 255 - not mentioned in manpage?

2016-10-25 Thread Paul Slootman
On Tue 25 Oct 2016, devz...@web.de wrote: > > is there a reason why error code 255 is not mentioned in the manpage > and wouldn`t it make sense to add "255 Unexplained Error" there > for completeness ? It wouldn't be unexplained then anymore, would it? :-) Paul -- Please use reply-all f

Re: Error with paths with ()'s

2015-08-18 Thread @lbutlr
> On Aug 17, 2015, at 5:03 PM, Wayne Davison wrote: > > The use of "{}" on the receiving (remote) side is superfluous -- just > specifying a destination dir (your .../Drive5/ path) is enough for rsync to > use the same name as the source file on the destination. That is the case if {} contain

Re: Error with paths with ()'s

2015-08-17 Thread Kevin Korb
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 It is true that you don't need the {} in the remote arg but due to the syntax you probably want --relative instead. On 08/17/2015 07:03 PM, Wayne Davison wrote: > > On Sun, Aug 16, 2015 at 11:13 PM, @lbutlr > wrote: > > fi

Re: Error with paths with ()'s

2015-08-17 Thread Wayne Davison
On Sun, Aug 16, 2015 at 11:13 PM, @lbutlr wrote: > find . -type f -atime -1 -exec rsync -aP {} 10.0.0.11:/Volumes/Drive5/{} > \; > The use of "{}" on the receiving (remote) side is superfluous -- just specifying a destination dir (your .../Drive5/ path) is enough for rsync to use the same name a

Re: Error with paths with ()'s

2015-08-17 Thread Kevin Korb
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Remember that when you rsync to 10.0.0.11:/Drive5/{} rsync is going to run: 'ssh 10.0.0.11 rsync --server /Drive5/whatever file name(s) were in {}' You should see the problem now. Even if the spaces and parentheses are quoted or escaped the ssh adds

Re: Error with paths with ()'s

2015-08-17 Thread @lbutlr
On Aug 17, 2015, at 3:06 PM, Joe wrote: > First, let me state the obvious. It looks like your code is executing rsync > in a bash one liner once for each file that find returns. That's not cool! > And it's almost definitely not what you wanted to do. It is perfect;y acceptable and definitely ‘c

Re: Error with paths with ()'s

2015-08-17 Thread Joe
I haven't used rsync with networks, but I do use bash a lot. First, let me state the obvious. It looks like your code is executing rsync in a bash one liner once for each file that find returns. That's not cool! And it's almost definitely not what you wanted to do. Among other things, that me

Re: Error with paths with ()'s

2015-08-17 Thread @lbutlr
On Aug 17, 2015, at 4:05 AM, Kevin Korb wrote: > If you want find to generate your list use --files-from: > > find . -type f -atime -1 -print0 | rsync -aP --files-from=- --from0 . > 10.0.0.11:/Volumes/Drive5/ This works: find . -type f -atime -1 -exec rsync -aP {} /Drive5/{} This fails if ther

Re: Error with paths with ()'s

2015-08-17 Thread Kevin Korb
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 If you want find to generate your list use --files-from: find . -type f -atime -1 -print0 | rsync -aP --files-from=- --from0 . 10.0.0.11:/Volumes/Drive5/ On 08/17/2015 02:13 AM, @lbutlr wrote: > I was trying to process a bunch of folders to sync them

Re: Error 28 and exclusion

2013-02-11 Thread Paul Slootman
On Mon 11 Feb 2013, scott.geo...@parker.com wrote: > > Secondly, I am receiving an error 28 (ENOSPC) on the transfer of a large > file. I make sure the destination file system is double what the source > for the possibility of needing to keep copies of both during transfer, but > I assumed --d

Re: Error 28 and exclusion

2013-02-11 Thread Kevin Korb
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Exclude paths are relative to the source path. Therefore you want to exclude /infor/ Are you actually using rsh? If so make sure you know the security implications. As for the space issue is it possible that you are hitting a file size limitation?

Re: Error recovery

2012-03-12 Thread Kevin Korb
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 While a file is being updated it is stored as a temporary name (.filename.string). When the file is complete the old version is deleted and the temp file is renamed into place. If rsync aborts during this process the temp file is deleted to ensure th

Re: Error 11: can not backup /var/lib/zope2.9

2010-02-08 Thread Michael Renner
On Sunday 07 February 2010, you wrote: > On Fri, 2010-02-05 at 19:31 +0100, Michael Renner wrote: Moin Matt, thanks for your answer, > > I wrote a small backup script that use rsync: r5backup > > (http://sourceforge.net/projects/r5backup/). It backup dozen of unix > > machines for many people. >

Re: Error 11: can not backup /var/lib/zope2.9

2010-02-07 Thread Matt McCutchen
On Fri, 2010-02-05 at 19:31 +0100, Michael Renner wrote: > I wrote a small backup script that use rsync: r5backup > (http://sourceforge.net/projects/r5backup/). It backup dozen of unix machines > for many people. > But when I try to backup /var/lib/zope2.9 I get an error 11. It does not > matter

RE: Error Code: 20. Error Desc: Received SIGUSR1 or SIGINT

2009-12-28 Thread alma.faunillan
Hello Rsync Support, This is to give you more information. Prior to the error below, I noticed in the logs that it keeps on building file list. Then we tried to restart the rsync service at 10:25am. The service went working again at around 11:09:17am. = Start of rsync Block @ Wed

Re: error in logging (version 3.1.0)

2009-11-07 Thread Matt McCutchen
On Sat, 2009-11-07 at 00:36 -0200, Carlos Carvalho wrote: > I use rsync -ii so that it logs *all* actions. Further, I don't use > any delete option but use --force. This means that if there's a name > collision rsync deletes files or directories. Here's an example: > > 0 0*deleting rwxrw

Re: Error messages 3.0.6pre1

2009-07-23 Thread Warren Oates
On Wed, Jul 22, 2009 at 2:52 AM, Mac User FR wrote: > This is a malloc (memory allocation) error. > It shows that a non-aligned pointer (pointer that doesn't start on an > address multiple of 4 in a 32-bit machine) is being freed. As pointers must > always be aligned, this indicates an error and th

Re: Error messages 3.0.6pre1

2009-07-21 Thread Mac User FR
This is a malloc (memory allocation) error. It shows that a non-aligned pointer (pointer that doesn't start on an address multiple of 4 in a 32-bit machine) is being freed. As pointers must always be aligned, this indicates an error and the function free() doesn't know how to deal with it. B

Re: Error messages 3.0.6pre1

2009-07-21 Thread Warren Oates
On Mon, Jul 20, 2009 at 4:20 AM, Mark Cohen wrote: > I too have the same issue (reported by Warren) - in that 3.06 backups appear > valid, but the terminal shows the following errors: > > rsync(18819) malloc: *** error for object 0xf305c: Non-aligned pointer being > freed > *** set a breakpoint in

re: Error messages 3.0.6pre1

2009-07-20 Thread Mark Cohen
I too have the same issue (reported by Warren) - in that 3.06 backups appear valid, but the terminal shows the following errors: rsync(18819) malloc: *** error for object 0xf305c: Non-aligned pointer being freed *** set a breakpoint in malloc_error_break to debug I'm looking for confirmatio

Re: Error messages 3.0.6pre1

2009-04-25 Thread Wayne Davison
On Fri, Apr 17, 2009 at 03:03:02PM -0400, Warren Oates wrote: > I compiled 3.0.6pre1, including the crtimes and fileflags patches for > use on Intel OS X 10.5.6 I just compiled rsync with those patches on an Intel OS X 10.5.6 system, and didn't see any such errors. I did see an issue with "make

Re: ERROR: writefd_unbuffered failed to write ... when COMPRESS

2008-12-05 Thread Matthias Meyer
Am Freitag 05 Dezember 2008 schrieb MATV: > Hello, > (Sorry, my english is no good) > > I've been searching for solutions but I don't find it. > > I'm using last version of cygwin (1.5.25-15) on Windows 2003 Server for > transfer a Virtual Machine Backup (<2 GB .vmdk files; VCBMOUNTER) to a > rem

Re: error receiving files from protocol 29 server

2008-09-24 Thread Paul Slootman
On Tue 23 Sep 2008, Matt McCutchen wrote: > On Tue, 2008-09-23 at 12:58 +0200, Paul Slootman wrote: > > In debian bug #493559 (http://bugs.debian.org/493559) the problem is > > that when requesting a file from an older version rsync, the remote > > server gives an error: > > > > $ rsync rsync://rs

Re: error receiving files from protocol 29 server

2008-09-23 Thread Matt McCutchen
On Tue, 2008-09-23 at 12:58 +0200, Paul Slootman wrote: > In debian bug #493559 (http://bugs.debian.org/493559) the problem is > that when requesting a file from an older version rsync, the remote > server gives an error: > > $ rsync rsync://rsync.blackholes.us/zones/countries/countries.rbl /tmp >

Re: Error message "Killed: 9"?

2008-08-18 Thread Wayne Davison
On Mon, Aug 18, 2008 at 11:57:43AM -0400, [EMAIL PROTECTED] wrote: > which gives me the error "Killed: 9" when it terminates. That's not an rsync error, but is likely to be a shell message that says that something else killed rsync. I'd suggest checking the system log files and/or process history

Re: error allocating core memory buffers with certain iconv args

2008-03-13 Thread Wayne Davison
On Tue, Mar 11, 2008 at 03:00:25PM +0100, Giuliano Gavazzi wrote: > rsync: writefd_unbuffered failed to write 4 bytes [sender]: Broken pipe (32) This just tells you that the receiver side went away, but we don't know why it went away. If it is crashing, try to get a core dump and report the back

Re: error code 10 when using ::

2008-01-04 Thread Paul Slootman
On Fri 04 Jan 2008, Gav wrote: > > $ rsync -rtlzv 123.456.789.000::websites /var/local/websites > > after about 2 minutes I get :- > > rsync: failed to connect to 123.456.789.000: Connection timed out (110) > rsync error: error in socket IO (code 10) at clientserver.c(104) > [receiver=2.6.9]

RE: error code 10 when using ::

2008-01-04 Thread Gav....
Hi All, finally got round to trying this again > -Original Message- > From: Matt McCutchen [mailto:[EMAIL PROTECTED] > Sent: Wednesday, 2 January 2008 12:46 AM > To: Gav > Cc: rsync@lists.samba.org > Subject: Re: error code 10 when using :: > > On Tue, 2

RE: error code 10 when using ::

2008-01-02 Thread Gav....
AIL PROTECTED] > Sent: Wednesday, 2 January 2008 12:46 AM > To: Gav > Cc: rsync@lists.samba.org > Subject: Re: error code 10 when using :: > > On Tue, 2008-01-01 at 17:44 +0900, Gav wrote: > > This works : > > > > sudo rsync -rtlzv --delete [EMAIL PROTECTED]:/

Daemon connection security [Re: error code 10 when using ::]

2008-01-01 Thread Matt McCutchen
On Wed, 2008-01-02 at 03:20 +0100, Olivier Thauvin wrote: > IIRC, rsync protocol do not transfert password in clear text, but use a > challenge method to perform the password verification. > > This mean either with rsync or ssh, the authentication is "secure". But > saying > both are secure is

Re: error code 10 when using ::

2008-01-01 Thread Olivier Thauvin
Le mardi 01 janvier 2008, Matt McCutchen a écrit : > > 2. Even the one that works requires me to enter my local root password > > and then the remote root password. Is this secure enough? > > You'll have to decide that for yourself.  SSH does encrypt the remote > root password before sending it ove

Re: error code 10 when using ::

2008-01-01 Thread Matt McCutchen
On Tue, 2008-01-01 at 17:44 +0900, Gav wrote: > This works : > > sudo rsync -rtlzv --delete [EMAIL PROTECTED]:/var/virtual/web > /usr/local/websites > > This does not : > > sudo rsync -rtlzv --delete [EMAIL PROTECTED]::websites > /usr/local/websites > > I created a [websites] section in a n

Re: error in rsync protocol data stream

2007-12-04 Thread Richard Jones
Richard Jones wrote: Help. This one's defeated me so far. I'm tring to push files from from a local Ubuntu 6.06 server to a remote Ubuntu 6.06 server using rsync (v 2.6.6 installed on both via apt-get). Every time I get the same eg: Not much help so far :-( I've managed to isolate the problem

Re: error in IPC Code (code 14) at main.c(669) [receiver=2.6.9cvs]

2007-09-20 Thread Suresh Kumar
Hi, I got the issue solved after doing some analysis.. I am not closing a file handle in one case and the same process is invoking rsync command.. In the long run the process is running out of file descriptors and causing the failure.. Suresh Kumar wrote: > > Hi, > > I am using rsync 2.6.9

Re: error in IPC Code (code 14) at main.c(669) [receiver=2.6.9cvs]

2007-09-13 Thread Matt McCutchen
On 9/13/07, Suresh Kumar <[EMAIL PROTECTED]> wrote: > Can anybody tell me the good way of find out the which process is opened too > many files and this is causing rsync fails to open new fd?? The error message tells you: it's the client/receiver process. > Currently i want to see /proc//fd direc

Re: error in IPC Code (code 14) at main.c(669) [receiver=2.6.9cvs]

2007-09-12 Thread Suresh Kumar
Hi, I am replicating the oracle database files from one system to another. This error is not always present. I tried to find out what is going on on the system that is causing too many open files.. But didn't get success. Can anybody tell me the good way of find out the which process is opened t

Re: error in IPC Code (code 14) at main.c(669) [receiver=2.6.9cvs]

2007-09-11 Thread Wayne Davison
On Tue, Sep 11, 2007 at 03:41:48AM -0700, Suresh Kumar Pedamallu wrote: > rsync: pipe failed in do_recv: Too many open files (24) This is the error that caused the failure. Your system had too many open files on it for some reason, causing the pipe() system call to fail. ..wayne.. -- To unsubsc

Re: error on --copy-dirlinks shortform in manpage

2007-04-12 Thread Matt McCutchen
Wayne already fixed this in the CVS version of rsync: http://cvs.samba.org/cgi-bin/cvsweb/rsync/rsync.yo#rev1.402 Matt On 4/12/07, Paul Slootman <[EMAIL PROTECTED]> wrote: Hi, A minor bug in the manpage was noticed by a Debian user... (Please keep the [EMAIL PROTECTED] in the Cc list in repli

Re: error with rsync and ssh

2007-03-22 Thread Peter
Le Jeudi 22 Mars 2007 20:55, Wayne Davison a écrit : > On Thu, Mar 22, 2007 at 06:22:11PM -0300, Roberto Pereyra wrote: > > Seems like a ssh issue because if I use the standard rsync port > > (without shh) works well. > > Those are two different things. Without ssh, you're connecting to an > exis

Re: error with rsync and ssh

2007-03-22 Thread Wayne Davison
On Thu, Mar 22, 2007 at 06:22:11PM -0300, Roberto Pereyra wrote: > Seems like a ssh issue because if I use the standard rsync port > (without shh) works well. Those are two different things. Without ssh, you're connecting to an existing rsync daemon. With ssh (via -e), you're using a remote she

Re: error with rsync and ssh

2007-03-22 Thread Matthias Schniedermeyer
Roberto Pereyra wrote: > Hi > > I running a rsync server using version 2.6.3pre1 in a Solaris 10 server. > > When I try to use ssh to encrypt my data, the rsync client fails with > this message: According to documentation what you try simply isn't possible "directly". If you want transport en

Re: error with rsync and ssh

2007-03-22 Thread Roberto Pereyra
Hi Mark Yes I can ssh login and if write a wrong user/password the system promt for a new one, without error. Seems like a ssh issue because if I use the standard rsync port (without shh) works well. Thanks roberto 2007/3/22, Mark Schoonover <[EMAIL PROTECTED]>: Roberto Pereyra wrote: > H

RE: error with rsync and ssh

2007-03-22 Thread Mark Schoonover
Roberto Pereyra wrote: > Hi > > I running a rsync server using version 2.6.3pre1 in a Solaris 10 > server. > > When I try to use ssh to encrypt my data, the rsync client fails with > this message: > > > rsync -avz -e ssh winbox.exe [EMAIL PROTECTED]::backups > Password: > rsync: connection

Re: Error in rsync protocol datastream on sync of

2007-01-12 Thread Sturla Holm Hansen
On tor, januar 11, 2007 23:30, Matt McCutchen wrote: > On 1/11/07, Sturla Holm Hansen <[EMAIL PROTECTED]> wrote: >> Hi list. >> I'm using OpenVPN to rsync a bunch of hosts each night and it works >> great >> on all but two of them which gives: >> >> Error in rsync protocol datastream on sync of >

Re: Error in rsync protocol datastream on sync of

2007-01-11 Thread Matt McCutchen
On 1/11/07, Sturla Holm Hansen <[EMAIL PROTECTED]> wrote: Hi list. I'm using OpenVPN to rsync a bunch of hosts each night and it works great on all but two of them which gives: Error in rsync protocol datastream on sync of That message is not exactly the same as the one rsync prints ("error i

Re: Error in rsync protocol datastream

2007-01-09 Thread Matt McCutchen
On 1/9/07, Sturla Holm Hansen <[EMAIL PROTECTED]> wrote: On these I get "Error in rsync protocol datastream on " allmost every night. That error can happen for several reasons. Do you see a more detailed error message just before it? Matt -- To unsubscribe or change options: https://lists.sam

Re: error installing rsync in windows xp

2006-09-26 Thread Eric S. Johansson
Imran Hussain wrote: Try DeltaCopy from http://aboutmyx.com. It is a Windows wrapper around rsync. this is broken for me. I don't get the buttons on the right hand side of the files/folders to copy box no matter what size I set the enclosing box to. -- To unsubscribe or change options: ht

Re: error installing rsync in windows xp

2006-09-15 Thread Imran Hussain
Check the logs. [EMAIL PROTECTED] wrote: hi i try for installing deltacopy in windows, while starting service iam getting "could not start service. unknown error occured". whats the problem, pls help me Thanks Read this topic online here: S

Re: error installing rsync in windows xp

2006-09-15 Thread rsync-mail-gateway
hi i try for installing deltacopy in windows, while starting service iam getting "could not start service. unknown error occured". whats the problem, pls help me Thanks Read this topic online here: Sent using Mail2Forum (http://www.m

Re: error installing rsync in windows xp

2006-09-14 Thread Imran Hussain
Try DeltaCopy from http://aboutmyx.com. It is a Windows wrapper around rsync. Imran. [EMAIL PROTECTED] wrote: hi iam new to nasbackup, i want to install rsync & ssh in windows XP, pls help me Thanks Read this topic online here: Sent usin

Re: error in rsync protocol data stream (code 12) at io.c(463) on HP-UX 11.23

2006-09-11 Thread Paul Slootman
On Mon 11 Sep 2006, Bernhard Wesely wrote: > [6951] getdents(6, 0x4003d820, 16384) .. = 152 > [6951] stat64("/test", 0x7fff84e0) . = 0 > [6951] getdents(6, 0x4003d820, 16384) .. = 0 > [6951] close(6) ..

Re: error rsync'ing links of the form ../xxx

2006-05-02 Thread Wayne Davison
On Tue, May 02, 2006 at 09:13:47AM -0400, Gary Aviv wrote: > In fact, even if the link is invalid it should be transfered. The desire is to make a daemon that is running without chroot work as closely as possible to a daemon that is running with chroot. So, what we definitely need to avoid is let

Re: error rsync'ing links of the form ../xxx

2006-05-02 Thread Gary Aviv
On Mon, 1 May 2006, Wayne Davison wrote: On Sat, Apr 29, 2006 at 01:48:28PM -0400, Gary Aviv wrote: However, at the destination the .. is missing. for example the link "../python/compile_plan.py" becomes "python/compile_plan.py" at the destination. Is your daemon running without chroot? I j

Re: error rsync'ing links of the form ../xxx

2006-05-01 Thread Wayne Davison
On Sat, Apr 29, 2006 at 01:48:28PM -0400, Gary Aviv wrote: > However, at the destination the .. is missing. for example > the link "../python/compile_plan.py" becomes "python/compile_plan.py" > at the destination. Is your daemon running without chroot? I just did a test, and rsync's symlink sanit

Re: error in protocol stream

2006-03-23 Thread John Van Essen
On Wed, 22 Mar 2006, David Bear <[EMAIL PROTECTED]> wrote: > I am trying to use the syntax: > > rsync -av -e "ssh -l ssh-user" [EMAIL PROTECTED]::module /dest > > found at http://rsync.samba.org/ftp/rsync/rsync.html > There is an rsync daemon running on rhost.asu.edu and that has a > module n

Re: Error in running rsync through cron

2006-03-14 Thread Wayne Davison
On Tue, Mar 14, 2006 at 09:24:58AM -0500, Srinivas Kotapally wrote: > Read from remote host source_host: Connection reset by peer This might be a connection-closing problem totally outside of rsync's control. See the Issues and Debugging page for how you can do some detective work to find out for

Re: Error Code 12

2006-01-05 Thread Buggy Code
Wayne Davison wrote: On Thu, Jan 05, 2006 at 04:28:51PM +1100, Buggy Code wrote: Secrets: test:password You need to specify the user:password in the secrets file, not the module:password. In your copy command you are telling rsync to authorize itself using username sophos, but no password f

Re: Error Code 12

2006-01-05 Thread Wayne Davison
On Thu, Jan 05, 2006 at 04:28:51PM +1100, Buggy Code wrote: > Secrets: > test:password You need to specify the user:password in the secrets file, not the module:password. In your copy command you are telling rsync to authorize itself using username sophos, but no password for that username exists

Re: error - File or path name too long

2005-12-29 Thread wwp
Hello Wayne, On Wed, 28 Dec 2005 10:16:19 -0800 Wayne Davison <[EMAIL PROTECTED]> wrote: > On Wed, Dec 21, 2005 at 09:30:05AM -0500, Yuan, Zhiyong (Exchange) wrote: > > readlink > > directioty_1/directioty_2/directioty_3/A_very_long_File_name_omitted_here: > > File or path name too long > > The

Re: error - File or path name too long

2005-12-28 Thread Wayne Davison
On Wed, Dec 21, 2005 at 09:30:05AM -0500, Yuan, Zhiyong (Exchange) wrote: > readlink > directioty_1/directioty_2/directioty_3/A_very_long_File_name_omitted_here: > File or path name too long The OS has a maximum size that they will allow for the path+filename to be specified. If a filename comb

Re: Error creating temporary file on remote PC

2005-11-29 Thread Wayne Davison
On Tue, Nov 29, 2005 at 07:13:28PM +0530, Vijay Ram Chitrapu (RCVIJAYD) wrote: > I am facing an error while trying to use the --temp-dir option > in the rsync version 2.4.8. I know of no such rsync version (there was a 2.4.6). > cannot create /tmp/.flash.dat.x The temp-dir option is meant t

Re: error in rsync protocol data stream

2005-11-01 Thread Wayne Davison
On Mon, Oct 31, 2005 at 01:14:16PM -0500, Kevin Karwaski wrote: > rsync: connection unexpectedly closed (12 bytes read so far) > rsync error: error in rsync protocol data stream (code 12) at io.c(189) As the Issues and Debugging page mentions (see item #3 at this URL: http://rsync.samba.org/issues

Re: Error in running RSYNC configure script

2005-10-01 Thread Wayne Davison
[EMAIL PROTECTED] wrote: I am trying to install rsync. There is an error coming while running configure script. The error says that your compiler can't create executables. You'll need to figure out what is wrong with your compiler setup. Configure found gcc on your system -- is that compi

Re: @ERROR: access denied

2005-07-14 Thread Paul Slootman
On Thu 14 Jul 2005, [EMAIL PROTECTED] wrote: > > [repositories] > comment = Subversion Repositories > path = /usr/local/repositories > read only = no > list = yes > hosts allow = 127.0.0.1 > auth users = username > secrets file = /etc/rsyncd.secrets > > However running "rsync [EMAIL

Re: @ERROR: access denied

2005-07-13 Thread Wayne Davison
On Thu, Jul 14, 2005 at 12:00:54AM +, [EMAIL PROTECTED] wrote: > @ERROR: access denied to repositories from localhost (::1) Did you check the log file to see what the daemon had to say about the failure? Perhaps the permissions are wrong on your secrets file (which would cause rsync to ignore

Re: @ERROR: access denied

2005-07-13 Thread ben-incomum
No, the line is there: username:password in /etc/rsyncd.secrets. >The username:password line in /etc/rsyncd.secrets? >Or the >export RSYNC_PASSWORD=... >setting before invocing the rsync command? WTF? -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Befor

Re: @ERROR: access denied

2005-07-13 Thread Eberhard Moenkeberg
Hi, On Thu, 14 Jul 2005 [EMAIL PROTECTED] wrote: I'm trying to set up an rsync daemon on my OS X machine to sync my remote subversion repositories. My config file /etc/rsyncd.conf looks like this: motd file = /etc/motd max connections = 25 syslog facility = local3 [repositories] comment = Su

Re: @ERROR: auth failed on module

2005-06-08 Thread Lakshminarayanan Radhakrishnan
Hi all, When the following console error is displayed  ?? regs LAKS sh: rsync: not found sh: rsync: not found sh: rsync: not found sh: rsync: not found sh: rsync: not found sh: rsync: not found sh: rsync: not found sh: rsync: not found sh: rsync: not found sh: rsync: not found sh: rsync: no

Re: @ERROR: auth failed on module

2005-06-07 Thread Thomas Simmons
John & Wayne, :) I'm fairly certain no other rsync processes were running, a reboot was part of the troubleshooting process, as was a 'killall rsync' or two. I did try specifying the user ([EMAIL PROTECTED]::home), and manually gave the password. I did not have the newline character at the end

Re: @ERROR: auth failed on module

2005-06-07 Thread John Van Essen
On Tue, 7 Jun 2005, <[EMAIL PROTECTED]> wrote: Thanks for the detail in your report. Error messages, log messages, config files all in one email. :) > /var/log/rsyncd.log on ServerB > > 2005/06/07 11:29:24 [22075] rsyncd version 2.6.0 starting, listening on port > 873 > 2005/06/07 11:29:35 [2

Re: @ERROR: auth failed on module

2005-06-07 Thread Wayne Davison
On Tue, Jun 07, 2005 at 12:07:49PM -0400, [EMAIL PROTECTED] wrote: > 2005/06/07 11:29:35 [20870] auth failed on module home from > serverA.domain.com (192.168.1.3) If you upgrade the server to 2.6.5, rsync will log the reason that the auth failed on that log-file line (password mismatch, missing

Re: error 12, caused by the cliebt side - how?

2005-01-27 Thread Wayne Davison
On Thu, Jan 27, 2005 at 11:59:38PM +0100, Eberhard Moenkeberg wrote: > What may be the cause of this fault, and why don't I see ANYTHING USEFUL > on EITHER side? Perhaps it is a fault of the network -- sometimes socket connections do get closed due to reasons outside of rsync's control. There ar

Re: error in rsync protocol data stream (code 12) at io.c(692)

2005-01-16 Thread Dag Wieers
On Fri, 14 Jan 2005, Wayne Davison wrote: > On Thu, Jan 13, 2005 at 07:51:33PM +0100, Dag Wieers wrote: > > unexpected tag -111 > > rsync error: error in rsync protocol data stream (code 12) at io.c(692) > > > > Can this be caused by the delay-renames patch ? > > I tested how the code ha

Re: error in rsync protocol data stream (code 12) at io.c(692)

2005-01-14 Thread Wayne Davison
On Thu, Jan 13, 2005 at 07:51:33PM +0100, Dag Wieers wrote: > unexpected tag -111 > rsync error: error in rsync protocol data stream (code 12) at io.c(692) > > Can this be caused by the delay-renames patch ? I don't think so. An "unexpected tag" error indicates that something went wr

Re: error in rsync protocol data stream (code 12) at io.c(692)

2005-01-14 Thread Dag Wieers
On Thu, 13 Jan 2005, Dag Wieers wrote: > Hi Wayne, Jeff, > > With the same version/build as the last report, I got this error now: > > ... > extra/state/all-packages.list >145 100% 46.83kB/s0:00:30 (634, 0.0% of 201605) > WARNING: fedora/1/en/i386/base/pk

Re: error in socket IO (code 10)

2004-10-19 Thread Wayne Davison
On Tue, Oct 19, 2004 at 02:13:29AM -0400, Shoghi Fret wrote: > rsync error: error in socket IO (code 10) at > /SourceCache/rsync/rsync-14/rsync/clientserver.c(93) There should be an error prior to that message that will tell you what failed (that's just the exit code). ..wayne.. -- To unsubscri

Re: Error (code 12)

2004-10-14 Thread Wayne Davison
On Thu, Oct 14, 2004 at 02:43:05PM -0400, Kevin Kallsen wrote: > rsync: writefd_unbuffered failed to write 4092 bytes: > phase "send_file_entry": Connection reset by peer See the notes on this web page to help you to figure out what is failing: http://rsync.samba.org/issues.html ..wayne.. --

Re: error in rsync protocol data stream (code 12) at io.c(165)

2004-07-14 Thread Chris Shoemaker
On Tue, Jun 22, 2004 at 10:06:49AM -0400, Linux wrote: > I get the same error even after taking the advise from the subsequent > posts to this message and other message stateing "error in rsync > protocol data stream (code 12) at io.c(165)" . > > The one thing that i have noticed is that is only

Re: error in rsync protocol data stream (code 12) at io.c(165)

2004-06-22 Thread Linux
I get the same error even after taking the advise from the subsequent posts to this message and other message stateing "error in rsync protocol data stream (code 12) at io.c(165)" . The one thing that i have noticed is that is only errors when the size of the directory on the remote machine excee

Re: error question

2004-06-21 Thread Wayne Davison
On Mon, Jun 21, 2004 at 10:59:46AM -0500, Matt Vorwald wrote: > (60) SendBuffer: Error fd = 95 peer socket closed This is not a message from rsync, so you'll have to look elsewhere. A quick google search indicates that it might have come from a special Novell-modified rsync for Netware, so you mi

Re: error in rsync protocol data stream (code 12) at io.c(165)

2004-06-21 Thread Francis Montagnac
> I am recieving a connection unexpectedly closed error while trying to > sync a directory on two machines. Rsync is in my path on both > machines. I am using ssh and I can connect to the server fine through > ssh. I am using a vpn but have no problems connecting to any of the > servers wit

Re: error in rsync protocol data stream (code 12) at io.c(165)

2004-06-21 Thread Wayne Davison
On Mon, Jun 21, 2004 at 11:47:32AM -0600, Nick Sylvester wrote: > Remote Machine: Connection refused This is the important part -- the connection to the remote machine was refused. My guess would be because it's trying to use rsh, not ssh, however you don't have to guess -- just run rsync with -v

Re: error in rsync protocol data stream

2004-05-18 Thread Tim Conway
It appears that the command you show is not a complete copy/paste job. When you changed "backup.amlaw.com" or whatever it was to "backup.domain.com", you also removed one of the colons between that and "jspfsp", as the only time rsync does a chroot is as a server. A chroot failure is almost inva

Re: @ERROR: auth failed on module -- PROBLEM SOLVED!

2004-05-08 Thread Wayne Davison
On Fri, May 07, 2004 at 02:28:28PM -0700, Jonathan Johnson wrote: > I found that a newline is required after the line containing the > password, at least in rsync 2.6.2. This is a long-standing glitch in rsync. I've just checked in changes that makes both the reading of the password file (for the

Re: @ERROR: auth failed on module -- PROBLEM SOLVED!

2004-05-08 Thread Paul Slootman
On Fri 07 May 2004, Jonathan Johnson wrote: > > I found that a newline is required after the line containing the > password, at least in rsync 2.6.2. Without the newline character, I Try the patch below. Paul Slootman --- authenticate.c.orig 2004-04-01 20:05:40.0 +0200 +++ authenticate

Re: Error rsync 2.6.2 Solaris 9 over Sun SSH

2004-05-05 Thread John Martinez
On May 5, 2004, at 8:53 PM, Wayne Davison wrote: ssh host uptime ; echo $? Thanks, I'll check that out. -john -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: Error rsync 2.6.2 Solaris 9 over Sun SSH

2004-05-05 Thread Wayne Davison
On Wed, May 05, 2004 at 03:45:55PM -0700, John Martinez wrote: > wrote 91628 bytes read 116 bytes 16680.73 bytes/sec > total size is 293287825 speedup is 3196.81 > rsync error: unexplained error (code 255) at main.c(633) When ssh exits, it returns an exit code. Rsync reads the code, and return

Re: Error message when trying to sync

2004-04-30 Thread Paul Slootman
On Thu 29 Apr 2004, Ryan Holowaychuk wrote: > > I am getting the following error > > [EMAIL PROTECTED] etc]# rsync 192.168.100.25::backup You're missing the local target (or source, depending on what you were trying to do). > rsync: failed to connect to 192.168.100.25: Connection refused rsync

Re: Error?

2004-04-22 Thread Jim Salter
I'd bet there's something else starting up rsync besides cron. Possibly a script in periodic, possibly a startup/init script, possibly something in another crontab, possibly inetd/xinetd. Check ALL the possible locations for things that periodically get fired off to startup programs, and get b

RE: Error?

2004-04-22 Thread Tim Conway
OK, I'm stumped. Tim Conway Unix System Administration Contractor - IBM Global Services desk:3032734776 [EMAIL PROTECTED] 1 2 * * * rsync --daemon 0 8 * * * killall rsync -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.c

RE: Error?

2004-04-22 Thread Kevin Kallsen
1 2 * * * rsync --daemon 0 8 * * * killall rsync -Original Message- From: Tim Conway [mailto:[EMAIL PROTECTED] Sent: Thursday, April 22, 2004 9:25 AM To: Kevin Kallsen Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: Error? Can we see the crontab line? For some reason, you&#x

Re: Error?

2004-04-22 Thread Tim Conway
Can we see the crontab line? For some reason, you're repeating the daemon startup. Tim Conway Unix System Administration Contractor - IBM Global Services desk:3032734776 [EMAIL PROTECTED] I have the latest rsync running on mandrake official 10. At 2:30 I run rsync --daemon from cron to

Re: Error?

2004-04-22 Thread Paul Slootman
On Thu 22 Apr 2004, Wayne Davison wrote: > Date: Thu, 22 Apr 2004 02:48:58 -0700 > From: Wayne Davison <[EMAIL PROTECTED]> > To: Kevin Kallsen <[EMAIL PROTECTED]> > X-Spam-Status: No, hits=0.0 required=3.2 tests=none autolearn=ham version=2.63 > Cc: [EMAIL PROTECTED]

Re: Error?

2004-04-22 Thread Wayne Davison
On Thu, Apr 22, 2004 at 01:01:34AM -0400, Kevin Kallsen wrote: > 2004/04/20 02:00:00 [2702] rsyncd version 2.6.0 starting, listening on port 873 > 2004/04/20 02:00:59 [2707] rsyncd version 2.6.0 starting, listening on port 873 > 2004/04/20 02:00:59 [2707] rsync: open inbound socket on port 873 fail

Re: Error msg

2004-04-14 Thread Jim Salter
[[email posted back to list with servers and paths obfuscated]] I notice you aren't specifing a username on the remote machine, machine.local. When using SSH transport, I personally always recommend specifying the remote user account; for example [EMAIL PROTECTED]:/export/path/name/ if the rem

Re: Error trying to compile 2.6.0 on Solaris 9 Sparc with gcc 3.2

2004-04-06 Thread Wayne Davison
On Mon, Apr 05, 2004 at 07:04:00PM -0300, Marcio d'Avila wrote: > I'm trying to compile rsync 2.6.0 on Solaris 9 Sparc, using gcc 3.2. > The configure script seems to run with no problem. > But when I go ahead to make, I get the following error output: I don't have access to any Solaris systems, s

Re: error writing 4 unbuffered bytes - exiting: Broken pipe

2004-03-10 Thread Paul Slootman
On Mon 08 Mar 2004, Nepple, Bruce wrote: > > (BTW, I hate bottom posting but do it out of deference to the > handicapped weirdos that like to scroll > through lots of useless information to get to the useful stuff > and can't seem to deal with a backwards history) If there's "lots of useless inf

  1   2   3   >