Re: access denied from rsync server

2006-04-06 Thread Martin Jeppesen
> Who is rsroot? That was a typo in the email. Thanks =) That should have been rroot. Even if I try with rroot@ rsync -avWHRx [EMAIL PROTECTED]::tlf /media/backup/latest-tlf/ do I get: @ERROR: auth failed on module tlf rsync error: error starting client-server protocol (code 5) at main.c(1296) [

Re: access denied from rsync server

2006-04-06 Thread Peter
--- Martin Jeppesen <[EMAIL PROTECTED]> wrote: > Hi, > > Can someone help me out, if I want to connect to a rsync server, and > download / from it? > > It is started in /etc/rc.local by > su -c "rsync --daemon" > > and /etc/rsyncd.conf contains: > > log file = /var/log/rsyncd.log > pid file =

access denied from rsync server

2006-04-06 Thread Martin Jeppesen
Hi, Can someone help me out, if I want to connect to a rsync server, and download / from it? It is started in /etc/rc.local by su -c "rsync --daemon" and /etc/rsyncd.conf contains: log file = /var/log/rsyncd.log pid file = /var/run/rsyncd.pid lock file = /var/run/rsync.lock [tlf] path = /

Re: how to tell what files changed?

2006-04-06 Thread Erik Neumann
Here is what I've learned so far about using rsync on Mac OS X 10.4.6 ("Tiger")  in case others find it useful:I did a test where I rsync a small directory with a few text files, from one directory to another directory on the same Mac OS X hard disk (disk was formatted with Apple's default HFS+ fil

Re: RSYNC Mirroring Data

2006-04-06 Thread Wayne Davison
On Wed, Apr 05, 2006 at 07:50:50PM +, Martin Fernandez wrote: > I need to mirror data in 2 ways: > node1 to node2 and node2 to node1 keeping the most recently file. Either use --update or look into a program designed for 2-way mirroring, such as unison. ..wayne.. -- To unsubscribe or change

Re: Using --link-dest works on small directory tree but not large one

2006-04-06 Thread Wayne Davison
On Thu, Apr 06, 2006 at 12:19:44AM -1000, Robot Robot wrote: > $ du -hsc /backup/websites/* > 2.1G/backup/websites/1 > 2.1G/backup/websites/2 > 4.2Gtotal You're asking du to report each directory separately, which is deceiving you. Run "du -hsc /backup/websites" instead. ..wayne.. --

Re: logging problems

2006-04-06 Thread Wayne Davison
On Thu, Apr 06, 2006 at 03:26:16PM +0200, Julian Pace Ross wrote: > I would just like to confirm that the problem is with my setup: > Using both 2.6.7 with patch, and then 2.6.8cvs ("nightly") Are you sure you updated the rsync exectuable on the remote machine? Run "ssh -i rskey -l julian rsync --

Re: Using --link-dest works on small directory tree but not large one

2006-04-06 Thread Bob Hutchinson
On Thursday 06 Apr 2006 11:19, Robot Robot wrote: > I'm using version 2.6.3 on OS X. I'm trying to use --link-dest to keep some > rolling backups of production websites. There is about 2GB of data in > 60,000 total files. I do an initial rsync to get an initial copy of the > data, and each day ther

Re: logging problems

2006-04-06 Thread Julian Pace Ross
Hi Wayne, Thanks for your mail. I would just like to confirm that the problem is with my setup: Using both 2.6.7 with patch, and then 2.6.8cvs ("nightly"), I have the following scenario: On linux box 1 (Suse), in /home/julian I have an rsyncd.conf, including the global options: log file = /v

RE: rsync, ssh and DSA key

2006-04-06 Thread khabot
Thanks for your help It works now On Thu, 2006-04-06 at 12:17, [EMAIL PROTECTED] wrote: > Hy, > > I just setup RSYNC over SSH between a Linux and a SunOS. I had the same > problem. > The goal is simple, put SSH2-RSA Public Key in your machine to the server > > To generate it, it something like

RE: rsync, ssh and DSA key

2006-04-06 Thread johan.boye
Hy, I just setup RSYNC over SSH between a Linux and a SunOS. I had the same problem. The goal is simple, put SSH2-RSA Public Key in your machine to the server To generate it, it something like this irrc : "ssh-keygen -t rsa" It creates something like this in "~/.ssh/id_rsa.pub" : ssh-rsa B

Re: rsync, ssh and DSA key

2006-04-06 Thread Shachar Shemesh
khabot wrote: >Thanks for your response >I have done this, but I execute > > >>>rsync -avz -e ssh [EMAIL PROTECTED]:/var/mail/ /var/mail >>> >>> >It still askin me for the root password in 10.78.0.117 and for the >passphrase i, 10.78.0.107 >thank you to help > > Your problem probably has

rsync not deleting files

2006-04-06 Thread Tim Boyer
This seems to be a common topic. I really _have_ looked at the archives before posting, though, and can't find anything that covers this. I'm backing up an entire server over the net, except for a few excluded files: echo `date` >/var/log/rsync.tolstoy /usr/bin/rsync -avHz --stats --delete --n

Using --link-dest works on small directory tree but not large one

2006-04-06 Thread Robot Robot
I'm using version 2.6.3 on OS X. I'm trying to use --link-dest to keep some rolling backups of production websites. There is about 2GB of data in 60,000 total files. I do an initial rsync to get an initial copy of the data, and each day thereafter I run rsync again with --link-dest to create a new

Re: rsync, ssh and DSA key

2006-04-06 Thread khabot
Thanks for your response I have done this, but I execute > > rsync -avz -e ssh [EMAIL PROTECTED]:/var/mail/ /var/mail It still askin me for the root password in 10.78.0.117 and for the passphrase i, 10.78.0.107 thank you to help On Wed, 2006-04-05 at 20:23, Bob Hutchinson wrote: > On Wednesday 05

Re: logging problems

2006-04-06 Thread Wayne Davison
On Wed, Apr 05, 2006 at 07:47:03PM -0400, Bartick, Brett wrote: > When I run rsync in daemon mode invoked at a command prompt, it does > log information in my configured log file (i.e. /var/log/rsyncd.log). > But when I invoke it via inetd with an entry in inetd.conf, it does > not log any informat

Re: logging problem

2006-04-06 Thread Wayne Davison
On Sun, Apr 02, 2006 at 09:45:27AM +0200, Julian Pace Ross wrote: > It seems not, and I must say that the bad behaviour as described by Matt's > reply the other day, persisted even after solely applying the > clientserver.c patch you had posted. I don't see any such problem after that patch. You

Re: how to tell what files changed?

2006-04-06 Thread John Van Essen
On Wed, 5 Apr 2006, Erik Neumann <[EMAIL PROTECTED]> wrote: > Seems that many of the files I just transferred from Windows to > Mac OS X came across with ***blank creation dates***. Egad - rsyncing between different OSes and neither OS is *nix. That's pretty rare. Although Mac OS X is technicall