Displaying 1 result from an estimated 1 matches for "myrsyndserver".
2006 Sep 04
1
Rsync + SSH on a different port + restricted access
...read only = no
list = yes
auth users = mirror
secrets file = /etc/rsyncd.secrets
Works fine ! I can write on the remote /home/mirror, perfect ;)
Then, i would like to run it over SSH port 2222
rsync -avz --rsh='ssh -p2222' /home/foor/bar/ mirror@myrsyndserver:mirror/
Still works fine ;)
But my user can login in my box with SSH. So, after a couple of google, i found that i have to edit authorised_keys and put :
command="rsync --daemon -vv --server ." ssh-rsa AAAAB3NzaC1...............
But now, i have this error :
$ rsync -avvvz --rs...