I have to setup "Rsync iBay over Internet"
I have done this:
1. Set up rsa keys using ssh-keygen.
2. Copy the public key to the remote host's /root/.ssh/authorized_keys file.
3. Setup a cron job to run the rsync command. I use:
rsync -auv --delete -e "ssh -1" root@remoteHostIP:/path/to/remote/ibay/ /path/to local/ target/directory
On my Console I get this:
buffer_get: trying to get more bytes 129 than in buffer 78
rsync: connection unexpectedly closed (0 bytes read so far)
rsync error: error in rsync protocol data stream (code 12) at io.c(151)
What can I do?