rsync problem

rsync problem

Posted by: kerryww
Posted on: 2008-05-02 18:45:00

Hi All,

I set up a folder c:\backup\mysite.com and set the permissions to share on my XP machine.

I then logged in using Putty.exe and used the following

myusername@torrance:~$ rsync -e ssh -av myusername@torrence.dreamhost.com:mysite.com /backup/mysite.com

..and got the following error..

receiving file list..done
rsync: mkdir "/backup/mysite.com" failed: no such file or directory (2)
rsync error: error in file IO (code11) at main.c(420)

Thanks for any suggestions

Kerry



Re: rsync problem

Posted by: sdayman
Posted on: 2008-05-02 21:27:00

You shouldn't be logged into torrence(torrance?) to rsync to your home machine. You'll have to initiate the rsync from home. I use something like:
rsync -avze ssh --delete 'myuser@mydomain.com:mysite.com' '/backup/mysite.com

Then again, I do have rsync on my home machine, so this works. Without rsync at both ends, you won't be able to sync this way. You got the error because you're logged into the DreamHost server, and it won't let you write to the root directory / (or /backup, which doesn't exist).

-Scott

Re: rsync problem

Posted by: KERRYW
Posted on: 2008-05-03 04:19:00

Thanks Scott,

So, it's not as simple as I thought! I have found instructions at http://www.trueblade.com/knowledge/using-rsync-and-cygwin-to-sync-files-from-a-linux-server-to-a-windows-notebook-pc

Kerry

Tags: mysite comerror errordreamhostsshkerryrsync