It seems a lot of people don’t know how to rsync over ssh when the server is running on another port than 22. Here’s the correct command to do that, with the ssh service running on port 9999:
rsync -a -v -e 'ssh -p 9999' user@host:/path/to/files .
It seems a lot of people don’t know how to rsync over ssh when the server is running on another port than 22. Here’s the correct command to do that, with the ssh service running on port 9999:
rsync -a -v -e 'ssh -p 9999' user@host:/path/to/files .