Thang Nguyen wrote:
> 
> Hi All,
> 
>  does anyone know how to setup the Rsync server daemon in the Redhat 7.0?
> since the xinetd.conf is replaced with the /etc/inetd.conf and the format is
> different i'm not sure how to config on the RedHat 7.0, can anyone help
> please?  my 6.2 format was: rsync   stream  tcp     nowait  root
> /usr/bin/rsync   rsyncd --daemon
> somehow i was tryong to use "server_args = rsyncd --daemon  in the redhat
> 7.0 config, but somehow it doesn't exept the "--daemon"  can anyone help?
> 
> Thanks
> Thang
> 
> _______________________________________________
> Redhat-list mailing list
> [EMAIL PROTECTED]
> https://listman.redhat.com/mailman/listinfo/redhat-list

How about in /etc/xinetd.d:

service rsyncd 
{
        disable         = no
        protocol        = tcp
        wait            = no
        user            = root
        server          = /usr/bin/rsync
        server_args     = --daemon
}

Barry



_______________________________________________
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to