Hi, On Fri, Sep 19, 2014 at 5:02 PM, rapelly kartheek <kartheek.m...@gmail.com> wrote: > > This worked perfectly. But, I wanted to simultaneously rsync all the > slaves. So, added the other slaves as following: > > rsync -avL --progress path/to/spark-1.0.0 username@destinationhostname > :path/to/destdirectory username@slave2:path username@slave3:path and so > on. >
The rsync man page says rsync [OPTION...] SRC... [USER@]HOST:DEST so as I understand your command, you have copied a lot of files from various hosts to username@slave3:path. I don't think rsync can copy to various locations at once. Tobias