Requirement
- SSH Server on Remote Computer
Syntax
To sync some of your local directories to a remote directory via ssh you can use the following syntax:
rsync -av -L --delete -e ssh <DIR1>[[ <DIR2>] <DIRn>] <REMOTE_USER>@<REMOTE_HOST>:<REMOTE_DIR>
Token | Description |
DIR1, DIR2, DIRn | These are the local directories you've wanted to be synced remotely. Only DIR1 is required and the rest are optional. |
REMOTE_USER | A valid user on the remote machine. |
REMOTE_HOST | A valid address of the remote machine. |
REMOTE_DIR | The destination directory on the remote machine. |
Example
rsync -av -L --delete -e ssh /data/artifactory backup01@10.0.0.204:/volume1/backup
Leave a Reply