Okay - I'm getting an amanda server up and running for the local Boys
and Girls Club on an Ubuntu 8.04 LTS server - If I run amcheck daily, I
get

Amanda Tape Server Host Check
-----------------------------
Holding disk /media/raid5/amandabackup/daily/dumps: 266228440 KB disk
space available, using 255988440 KB
slot 10: Found a non-amanda tape, will label it `daily-001'.
NOTE: skipping tape-writable test
Found a brand new tape, will label it daily-001.
NOTE: conf info dir /etc/amanda/daily/curinfo does not exist
NOTE: it will be created on the next run.
NOTE: index dir /etc/amanda/daily/index does not exist
NOTE: it will be created on the next run.
Server check took 0.063 seconds

Amanda Backup Client Hosts Check
--------------------------------
WARNING: Usage of fully qualified hostname recommended for Client
localhost.
WARNING: localhost: selfcheck request failed: timeout waiting for ACK
Client check: 1 host checked in 29.994 seconds, 1 problem found

(brought to you by Amanda 2.5.2p1)

So I run netstat -a | grep amanda to see what services I have running
and I get

tcp        0      0 *:amandaidx             *:*
LISTEN

So I figure I must have something wrong with my /etc/xinetd.d/amanda
file - but I can't find the issue.  I have restarted xinetd so often I
think I'm going crazy!


Contents of /etc/xinetd.d/amanda

# default: on
# description: The amanda service
service amanda
{
        only_from       = 192.168.10.100
        socket_type     = dgram
        protocol        = udp
        wait            = yes
        user            = backup
        group           = backup
        groups          = yes
        server          = /usr/lib/amanda/amandad
        server_args     = -auth=bsd amdump amindexd amidxtaped
        disable         = no
}
# default: on
# description: The amanda index service
service amandaidx
{
        only_from       = 192.168.10.100
        socket_type     = stream
        protocol        = tcp
        wait            = no
        user            = backup
        group           = backup
        groups          = yes
        server          = /usr/lib/amanda/amindexd
        server_args     = -auth=bsd amdump amindexd amidxtaped
        disable         = no
}
#default: on
# description: The amanda tape service
service amidxtape
{
        only_from       = 192.168.10.0/24
        socket_type     = stream
        protocol        = tcp
        wait            = no
        user            = backup
        group           = backup
        groups          = yes
        server          = /usr/lib/amanda/amidxtaped
        server_args     = -auth=bsd amdump amindexd amidxtaped
        disable         = no
}




-- 
Matt Burkhardt, M.Sci. Technology Management
[email protected]
(301) 682-7901
502 Fairview Avenue
Frederick, MD  21701
http://www.imparisystems.com 

Reply via email to