- On Vista: installed cwRsyncServer (http://sourceforge.net/project/showfiles.php?group_id=69227).
- On DS480: configured an network backup job to the vista machine
The first automatic (full) backup went withouth any problems, but the incremental backups keep failing.
This is the rsyncd.conf I'm currently using:
- Code: Select all
use chroot = false
strict modes = false
hosts allow = *
log file = rsyncd.log
# Module definitions
# Remember cygwin naming conventions : c:\work becomes /cygwin/c/work
[backupCUBE]
path = /cygdrive/d/RecoverCube/Data
read only = true
transfer logging = no
Rsync gives me the following errors:
- Code: Select all
2009/04/07 20:37:36 [4204] connect from CUBE (192.168.0.198)
2009/04/07 20:38:03 [4564] connect from CUBE (192.168.0.198)
2009/04/07 20:38:03 [4564] rsync to backupCUBE/Cube_001132022F30/ from cube (192.168.0.198)
2009/04/07 20:38:03 [4564] ERROR: module is read only
2009/04/07 20:38:03 [4564] rsync error: syntax or usage error (code 1) at main.c(866) [receiver=3.0.5]
If I change in rsyncd.conf the read only flag, the backup continues but gives me more errors later on:
- Code: Select all
use chroot = false
strict modes = false
hosts allow = *
log file = rsyncd.log
# Module definitions
# Remember cygwin naming conventions : c:\work becomes /cygwin/c/work
[backupCUBE]
path = /cygdrive/d/RecoverCube/Data
read only = false
transfer logging = no
- Code: Select all
2009/04/07 20:29:43 [5636] connect from CUBE (192.168.0.198)
2009/04/07 20:29:43 [5636] rsync: read error: Software caused connection abort (113)
2009/04/07 20:29:43 [5636] rsync error: error in rsync protocol data stream (code 12) at io.c(759) [receiver=3.0.5]
2009/04/07 20:30:09 [7952] rsync: rename "/Cube_001132022F30/Photo/100NCD70/@eaDir/DSC_0252.JPG/.SYNOPHOTO:THUMB_B.jpg.NK34h6" (in backupCUBE) -> "Photo/100NCD70/@eaDir/DSC_0252.JPG/SYNOPHOTO:THUMB_B.jpg": Invalid argument (22)
Anyone can help me out here? Is the read-only option not supported? According to the information I've found I would think this option should be set to true (one way backup):
read only :The "read only" option determines whether clients will be able to upload files or not. If "read only" is true then any attempted uploads will fail. If "read only" is false then uploads will be possible if file permissions on the server allow them. The default is for all modules to be read only.
I've been trying to get this to work for a week now, so any insights would be appreciated!


