I installed net/rsync on two identical FreeBSD 10.2 machines using
The server is running
My problem is that I get the following error message when try to copy a file to the server:
When querying the server it returns a list of the modules as well as a list of the files/directories of a specific module without any problem.
Any ideas?
I can rsync files using the path directly without any problems.
pkg. One will act as "the server" and the other will act as "the client".The server is running
rsyncd and with the following configuration file:
Code:
pid file = /var/run/rsyncd.pid
uid = nobody
gid = nobody
use chroot = no
max connections = 4
[foo]
path = /usr/local/backup/foo
My problem is that I get the following error message when try to copy a file to the server:
Code:
$ rsync -avz file.txt user@my.server.com::foo
sending incremental file list
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at io.c(226) [sender=3.1.2]
Any ideas?
I can rsync files using the path directly without any problems.