Re: Q: Rsync, Batch: How to avoid the password ask ?

2004-07-06 Thread Tim Conway
You're getting there. Save yourself some typing, though, and simplify your commandline until we get auth working. just rsync [EMAIL PROTECTED]::backup_pa get the list and we're past the hurdle. Looking at what you're doing, my guess is that you have world read on your secrets file -

Back to basics - Re: Q: Rsync, Batch: How to avoid the password ask ?

2004-07-02 Thread Stuart Halliday
Hi Tim, Thanks for the info ... and the congratulations ;) but now when I try to do this in a batch file : SET BSERVER=192.168.0.102 SET RSYNC_PASSWORD=bart2 rsync -av --delete /cygdrive/c/Doc/backup/Desktop/MesFavories.rar [EMAIL PROTECTED]::backup_pa I got the following error :

Re: Q: Rsync, Batch: How to avoid the password ask ?

2004-07-01 Thread bzels123
Hi Thanks for the info but either with or without SSH I got errors So my config is : Linux Side (Redhat 9) with rsync 2.6.2 as server Rsync config : rsync --daemon --config=/etc/rsyncd.conf -- /etc/rsyncd.conf: motd file = /etc/rsyncd.motd log file = /var/log/rsyncd.log pid

Re: Q: Rsync, Batch: How to avoid the password ask ?

2004-07-01 Thread Tim Conway
on the server side, you seem to have done it correctly. on the client side, you need some changes. --daemon is not to tell rsync to connect to an rsyncd. rsync:// prefex or or ::seperator do that. --server is an option passed from an invoking rsync to the one on the other end of an external

Re: Q: Rsync, Batch: How to avoid the password ask ?

2004-07-01 Thread John Taylor
On Thu, Jul 01, 2004 at 01:19:42PM -0600, Tim Conway wrote: SET BSERVER=192.168.0.102 SET RSYNC_PASSWORD=bart2 rsync -av --delete /cygdrive/c/Doc/backup/Desktop/MesFavories.rar [EMAIL PROTECTED]::backup_pa/current/bz/favories This tells rsync to connect with its internal transport to the

Re: Q: Rsync, Batch: How to avoid the password ask ?

2004-07-01 Thread bzels123
Hi Tim, Thanks for the info ... and the congratulations ;) but now when I try to do this in a batch file : SET BSERVER=192.168.0.102 SET RSYNC_PASSWORD=bart2 rsync -av --delete /cygdrive/c/Doc/backup/Desktop/MesFavories.rar [EMAIL PROTECTED]::backup_pa I got the following error : @ERROR: auth

Re: Q: Rsync, Batch: How to avoid the password ask ?

2004-06-28 Thread Stuart Halliday
As I want to automate my Desktop backup process, I'm currently trying to finilize a CMD (Windows XP batch) file in order to save different data (outlook.pst, \desktop, \docs, \Favorites ). My problem is that even with this parameter SET RSYNC_PASSWORD= It still ask me for a

Re: Q: Rsync, Batch: How to avoid the password ask ?

2004-06-25 Thread Wayne Davison
On Fri, Jun 25, 2004 at 04:58:12PM +0200, bzels123 wrote: My problem is that even with this parameter SET RSYNC_PASSWORD= It still ask me for a password, blocking of course all the process automation. You don't mention what command you're running, so I'll assume that the problem is that