rsync: avoid overwriting of files

I was migrating this stuffs we have from an old FreeBSD 4.0 Server to a new FreeBSD 6.0 Server hosted at Verio. I was fumbled and tumbled when I use this rsync tool by migrating the files to our new server.

The situation is that, in every directories we have being assigned in a virtual host and its DocumentRoot are having different owners and group assigned. The old server we have is having a version of an old Apache. Now, in order to achieve the exact ruling or permission, rsync is a tool that enables you to preserve ownership as well as its permission of the files/directories that you're going to copy--or shall we use the term "migrate".

My mistake was that, migrating with files using rsync is a little bit tricky. Ending a copy like this, for example:

rsync -r -e "ssh -l ahkmed" localhost:/home/ahkmed/documents /www/documents

is a different story than

rsync -r -e "ssh -l ahkmed" localhost:/home/ahkmed/documents/ /www/documents

Note the ending has slash in it while the first one has no slash in it at "/home/ahkmed/documents/".

The first one will copy the "documents" folder and its contents to /www/documents. So this will result into /www/documents/documents. If you're intending to grab the "documents" folder and put it in /www/documents only the contents of that "documents" folder, you need to use the second rsync command that I have shown above, i.e. with trailing slash (/) at the end.

You should really be aware of the differences between the two because you might end up fumble and tumble as what I did. The story goes like this. I have the files in /usr/local/apache/htdocs from an old server and I made the stupid thing when I issue like:

rsync -r --delete -e "ssh -l ahkmed" oldserver.com:/usr/local/apache/htdocs/ ../

where the current directory I am in the new server is at /usr/local/apache2/htdocs/. This means that, delete all the files if not existent at /usr/local/apache2/in the new server. Dang, it really works deleting it, but it's a mistake! However, I do make backups of course.

Now, here's another stuff what I learned from rsync also, you can do filter files like you don't want to be deleted or updated.

rsync -o -p -g -v -r -a -u --update --exclude={camping,journey,files.txt} -e "ssh -l ahkmed" localhost:/home/ahkmed/Desktop/pics .

-u = will tell that the receiver has the updated file
--exclude = will do a filter, excluding a directory name (whether it's a subdirectory of a directory). Appending lots of filters, I suggest to you --exclude-file=FILE_FILTERS.

This prevents an rsync copy that has contents been modified and also a directory that you don't want to update anymore, somewhat like the subdirectory is a final copy, while others needs to be copied if newer files has been copied.

Comments

Popular posts from this blog

LVM: How to remove a volume using pvremove

Using Oracle 11g thru VirtualBox appliance in Mac OS X Lion

Use Shell Editor for Eclipse for editing bash, ksh, csh in Unix/Linux system