I am starting to use rsnapshot to backup my files over my windows network. I have installed cwRsyncServer on the servers I wish to back up, and it is partly working. The problem comes when I want to backup a server with multiple locations where I need to use multiple modules. Below is an example of one of the rsyncd.conf files I am using that has 2 modules. In this example, rsnapshot only backs up what is in the website_logs module. Although if I run "rsync server.domain::" on my rsnapshot server, it reports back both modules.
use chroot = false
strict modes = false
hosts allow = *
log file = rsyncd.log
uid = 0
gid = 0
# Module definitions
# Remember cygwin naming conventions : c:\work becomes /cygwin/c/work
#
[website]
path = /cygdrive/d/website
read only = true
transfer logging = yes
[website_logs]
path = /cygdrive/d/website logfiles
read only = true
transfer logging = yes
Here is a second rsyncd.conf file from another server that has 2 modules. Though this time, the first module (rock-e) is backed up, and the second module is not. Same thing applies; if I run "rsync server.domain::" on the rsnapshot server, it reports back both modules.
use chroot = false
strict modes = false
hosts allow = *
log file = rsyncd.log
uid = 0
gid = 0
# Module definitions
# Remember cygwin naming conventions : c:\work becomes /cygwin/c/work
#
[rock-e]
path = /cygdrive/c/backups/rock-e
read only = true
transfer logging = yes
[inetpub]
path = /cygdrive/c/inetpub
read only = true
transfer logging = yes
Here is the applicable config from the rsnapshot.conf file
backup XXX.XXX.XXX.XXX::website Website_Folder
backup XXX.XXX.XXX.XXX::website_logs Website_Folder
backup XXX.XXX.XXX.XXX::rock-e Rock-e_Folder
backup XXX.XXX.XXX.XXX::inetpub inetpub_Folder
On the windows servers, I added SvcCWRSYNC to the local admin group, so that user has access to every folder on the server, so I can't imagine this being a permissions problem.
Does anyone have any suggestions on how I can get rsnapshot to start backing up ALL the modules?
thanks
