RE: rsync error: error starting client-server protocol

2006-12-07 Thread rsync . 20 . maillinglist
 -Original Message-
 From: Wayne Davison - [EMAIL PROTECTED]
 Sent: Friday, December 01, 2006 7:05 PM
 To: [EMAIL PROTECTED]
 Subject: Re: rsync error: error starting client-server protocol
 
 On Tue, Nov 28, 2006 at 03:00:03PM +0100,
 [EMAIL PROTECTED] wrote:
  2006/11/28 14:52:36 [26584] rsync denied on module home from
localhost
  (127.0.0.1)
 
 This means that the host was not authorized (2.6.6 would have
displayed
 an auth error if the authentication had failed).  I'd suggest editing
 your rsyncd.conf file to temporarily remove the hosts allow line and
all
 other access restrictions.  If that doesn't allow you to connect then
 you are probably editing the wrong config file for the daemon.  If
that
 does let you in, add back various auth rules to see what stops you
from
 connecting.
 
 ..wayne..

Thank you very much. I fixed the problem it must bet he wrong config
file I edited. I deleted the service and installed the service again. I
added the config file to the command line of the service and everything
work fine.

I didn't see any parameter in the service view of Windows so I thought
the default values are in use. But after I installed the service again
still no parameters where visible in the service view of Windows. The
parameters for the service are hidden somewhere.

Again. Thank you very much.

 Franz

IMPORTANT
I will read replies only from the mailing list. 
If you send me email directly it will be deleted.


-- 
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html


Re: rsync error: error starting client-server protocol

2006-12-01 Thread Wayne Davison
On Tue, Nov 28, 2006 at 03:00:03PM +0100, [EMAIL PROTECTED] wrote:
 2006/11/28 14:52:36 [26584] rsync denied on module home from localhost
 (127.0.0.1)

This means that the host was not authorized (2.6.6 would have displayed
an auth error if the authentication had failed).  I'd suggest editing
your rsyncd.conf file to temporarily remove the hosts allow line and all
other access restrictions.  If that doesn't allow you to connect then
you are probably editing the wrong config file for the daemon.  If that
does let you in, add back various auth rules to see what stops you from
connecting.

..wayne..
-- 
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html


RE: rsync error: error starting client-server protocol

2006-11-30 Thread rsync . 20 . maillinglist
 -Original Message-
 From: Wayne Davison - [EMAIL PROTECTED] 
 Sent: Monday, November 20, 2006 5:44 PM
 To: [EMAIL PROTECTED]
 Cc: rsync@lists.samba.org
 Subject: Re: rsync error: error starting client-server protocol
 
 On Fri, Nov 17, 2006 at 11:49:27AM +0100, 
 [EMAIL PROTECTED] wrote:
  @ERROR: access denied to home from localhost (127.0.0.1)
 
 Consult the rsync log file for a more detailed reason why the 
 authorization was rejected and then fix the reason for the failure.

In the log is nearly not information about the failure. 

--rsyncd.log

2006/11/28 14:52:07 [18536] rsyncd version 2.6.6 starting, listening on
port 873
2006/11/28 14:52:36 [26584] rsync denied on module home from localhost
(127.0.0.1)
--rsyncd.log


How could I get more information to fix the failure?


Thanks for any help

  Franz

IMPORTANT
I will read replies only from the mailing list. 
If you send me email directly it will be deleted.


-- 
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html


RE: rsync error: error starting client-server protocol

2006-11-17 Thread rsync . 20 . maillinglist
 -Original Message-
 From: Wayne Davison 
 Sent: Thursday, November 09, 2006 2:41 AM
 To: rsync@lists.samba.org
 Subject: Re: rsync error: error starting client-server protocol
 
 On Wed, Nov 08, 2006 at 04:12:15PM +0100, 
 rsync.20.maillinglist @ spamgourmet.com wrote:
  @ERROR: access denied to home from localhost (127.0.0.1)
 
 This is the important bit.  This means that you got through 
 to the rsync daemon and it rejected your access.  The log 
 file for the daemon will have more explicit information 
 (which is hidden from the client on purpose), but I'd imagine 
 that you need to add localhost to the list of acceptable IPs 
 that are authorized to connect.
 
 ..wayne..

I change the rsync.conf. I appended the rsync.conf at the bottom.

On the remote machin I still get the error
$  /usr/local/bin/rsync -v -v -avz
rsync://[EMAIL PROTECTED]:/home/bin ~/temp/rsync
opening tcp connection to localhost port 
opening connection using --server --sender -vvvlogDtprz . home/bin
@ERROR: access denied to home from localhost (127.0.0.1)
rsync error: error starting client-server protocol (code 5) at
main.c(1171)
_exit_cleanup(code=5, file=main.c, line=1171): about to call exit(5)

I tried on the local pc which has the ip 192.168.180.53 with 
/bin/rsync -v -avz rsync://[EMAIL PROTECTED]:873/home/bin/ahk
/tmp/ahk
Everything work. But if start on the local pc which is localhost I got
an error

/bin/rsync -v -avz rsync://[EMAIL PROTECTED]:873/home/bin/ahk /tmp/ahk
opening tcp connection to localhost port 873
opening connection using --server --sender -vvlogDtprz . home/bin/ahk
@ERROR: access denied to home from localhost (127.0.0.1)
rsync error: error starting client-server protocol (code 5) at
/home/lapo/packaging/tmp/rsync-2.6.6/ma
in.c(1171)


Rsync.conf
-
use chroot=false
strict modes=true
auth users=backup
secrets file=/etc/rsyncd.secrets
hosts allow=*, localhost, 127.0.0.1, 192.168.180.53
log file=/var/log/rsyncd.log
max verbosity = 2
transfer logging = yes

[home]
path=/cygdrive/d/home/
exclude=.ssh/ .ssh/** TEST/ TEST/**
read only=true
timeout=600

cut-other-modul-configuration---

-- 
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html


RE: rsync error: error starting client-server protocol

2006-11-08 Thread rsync . 20 . maillinglist
 -Original Message-
 From: Wayne Davison
 Subject: Re: rsync error: error starting client-server protocol
 
 On Mon, Oct 30, 2006 at 12:02:02PM +0100, you wrote:
  I get now the error you can read in the subject. Any hint to get it 
  run again would be fine.
 
 Please be more explicit in the command that you're running 
 and any error messages that rsync outputs prior to the one 
 you cited.  Are you using the right port number and hostname 
 to access the tunnel?
 
 ..wayne..
 

I have installed
2.) installed a tunnel via ssh from the remote machine to my pc
ssh [EMAIL PROTECTED] -N -R pcbn0205.dpcom.de::localhost:873

3.) I could run rsync from the remote machine to make bakups
The command to run the backup and the error messages is

/usr/local/bin/rsync -v -v -avz rsync://[EMAIL PROTECTED]:/home/bin
~/temp/rsync
opening tcp connection to localhost port 
opening connection using --server --sender -vvvlogDtprz . home/bin
@ERROR: access denied to home from localhost (127.0.0.1)
rsync error: error starting client-server protocol (code 5) at
main.c(1171)
_exit_cleanup(code=5, file=main.c, line=1171): about to call exit(5)

When I start the following rsync command on my local pc everything is ok
/bin/rsync -v -avz rsync://[EMAIL PROTECTED]:873/home/bin/ahk
/cygdrive/c/Temp/rsyncTEST/bin/ahk

On the remote machine and on my pc I have rsync version 2.6.6 protocol
version 29.

The network admins decided to make 2.) inpossible. So I build the ssh
tunnel from the pc to the remote machine. But the backup does not longer
run.

If there is not enough info in that mail please ask

Thanks for any help

  Franz

IMPORTANT
I will read replies only from the mailing list. 
If you send me email directly it will be deleted.


-- 
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html


Re: rsync error: error starting client-server protocol

2006-11-08 Thread Wayne Davison
On Wed, Nov 08, 2006 at 04:12:15PM +0100, [EMAIL PROTECTED] wrote:
 @ERROR: access denied to home from localhost (127.0.0.1)

This is the important bit.  This means that you got through to the rsync
daemon and it rejected your access.  The log file for the daemon will
have more explicit information (which is hidden from the client on
purpose), but I'd imagine that you need to add localhost to the list
of acceptable IPs that are authorized to connect.

..wayne..
-- 
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html