> >How do I backup my Samba server running on Redhat 7.1 using
> Amanda? There' s
> >a part in the INSTALL which mentions about inetd.conf. But
> Redhat 7.1 don't
> >use inetd.conf, is there a problem?
>
> Don't use Linux :) Why those people always want to do things diferently?
>
> Well I think it is called xinetd.conf under Linux.
>

You are right. Modify the following to match your amanda user, amanda group
and the paths to server files and copy in appropriate files. Once done you
have to reinitialise xinetd (kill -SIGUSR1 "xinetd PID")

Good Luck!

Srdjan


This goes in: /etc/xinetd.d/amanda
-- CUT HERE --
# default: on
#
# description: Part of the Amanda server package

service amanda
{
        socket_type             = dgram
        protocol                = udp
        wait                    = yes
        user                    = operator
        group                   = disk
        server                  = /usr/local/libexec/amandad
}
-- CUT HERE --

This goes in: /etc/xinetd.d/amandaidx
-- CUT HERE --
# default: on
#
# description: Part of the Amanda server package

service amandaidx
{
        socket_type             = stream
        protocol                = tcp
        wait                    = yes
        user                    = operator
        group                   = disk
        server                  = /usr/local/libexec/amindexd
}
-- CUT HERE --

This goes in: /etc/xinetd.d/amidxtape
# default: on
#
# description: Part of the amanda server package
#
service amidxtape
{
        socket_type             = stream
        protocol                = tcp
        wait                    = no
        user                    = operator
        group                   = disk
        server                  = /usr/local/libexec/amidxtaped
}
-- CUT HERE --

Reply via email to