On Fri 27 May 2005, dtra wrote:

> when i try this, it says unable to find rsyncd.conf
> nice -n 19 rsync -a --rsh="ssh -l remoteuser -c blowfish" 
> [EMAIL PROTECTED]::rsync_module/files /path/to/bak/

Wayne's point of saying "use a daemon" (to paraphrase a bit :-)
is to eliminate use of ssh. By explicitly passing an --rsh option you
tell rsync to connect via ssh, and then start a one-off rsync daemon for
this transfer.

Try starting the rsync daemon separately first on the remote, i.e.
something like:

    rsync --daemon --config /etc/rsyncd.conf

Then do the transfer like this:

    rsync -a [EMAIL PROTECTED]::rsync_module/files /path/to/bak/

Add nice -n 19 where appropriate :-) (on one or both ends, depending on
what you want).


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

Reply via email to