Paul
Paul

Reputation: 1390

Unexpected local arg: /rsync

I would like to use rsync to synchronise my /rsync folder.

I create the rsync users on my 2 servers and configure the ssh key.

I installed rsync, created /rsync folder put chmod 777 on it.

But when I execute

rsync -avz -e ssh [email protected]:/rsync /rsync -p 8682

I have

Unexpected local arg: /rsync
If arg is a remote file/dir, prefix it with a colon (:).
rsync error: syntax or usage error (code 1) at main.c(1246) [Receiver=3.0.9]

("ssh [email protected] -p 8682" works)

Upvotes: 0

Views: 7795

Answers (1)

Paul
Paul

Reputation: 1390

rsync -avz -e 'ssh -p 8682' [email protected]:/rsync /rsync

Upvotes: 2

Related Questions