Hello,
I installed DeltaCopy on my computer. I would like to sync a folder on my Gentoo Linux server. I set the configuration file rsyncd.conf and everything is working except the transfert.
rsync: change_dir#1 "/WarSeeker/" (in documents) failed: Permission denied (13)
I know what is the probleme: The permission access aren't set when DeltaCopy upload files. The UID and GID are ok but not the chmod.
# ls -lh
total 4,0K
d--------- 2 nobody nobody 4,0K jun 24 21:26 WarSeeker
If I chmod 755 -R . on my server everything is working and the files are sync'ing. I don't know where does this probleme come from. Here is my rsync.conf:
# /etc/rsyncd.conf
# Minimal configuration file for rsync daemon
# See rsync(1) and rsyncd.conf(5) man pages for help
# This line is required by the /etc/init.d/rsyncd script
pid file = /var/run/rsyncd.pid
use chroot = yes
read only = yes
#strict modes = false
uid = nobody
gid = nobody
# Simple example for enabling your own local rsync server
#[gentoo-portage]
# path = /usr/portage
# comment = Gentoo Portage tree
# exclude = /distfiles /packages
[documents]
path = /home/jamesb/rsync/
comment = Document
read only = no
auth users = jamesb
secrets file = /etc/rsyncd.secrets
Thank you very much in advance !
DeltaCopy is very useful and very very well built. Thank you for your good work.
Jamesb