I'm trying to setup rsync, but I don't.
My configuration file rsyncd.conf is
gid = users
read only = true
use chroot = true
max connections = 1
transfer logging = true
log format = %h %o %f %l %b
log file = /var/log/rsyncd.log
hosts allow = 192.168.2.24/255.255.255.0
[files]
path = /home/files
auth users = ursync
max connections = 1
timeout = 1200
and my rsyncd.secrets is
# user:passwd
ursync:exampleI
When I try to connect, the client show this messages
Permission denied.
unexpected EOF in read_timeout
and in the server, the log error is
Aug 16 11:53:13 ender in.rshd[3259]: connect from 192.168.2.24
(192.168.2.24)
Aug 16 11:53:13 ender pam_rhosts_auth[3259]: denied to ursync@192.168.2.24
as ursync: access not allowed
Aug 16 11:53:13 ender in.rshd[3259]: rsh denied to ursync@192.168.2.24 as
ursync: Permission denied.
Aug 16 11:53:13 ender in.rshd[3259]: rsh command was
'rsync --server --sender -r . files'
Thanks