>and /tmp/tmpamanda is :
>
>#!/bin/sh
>echo "$(date): GOTCHA!!!" > /tmp/amandalog

That's not valid syntax.  Using "$(cmd)" is ksh/bash only, not sh.
Either change the #! line to run ksh or bash, or change $( to ` and )
to `, e.g.:

  echo "`date`: GOTCHA!!!" > /tmp/amandalog

>so I think your guess is right and
>xinetd is not listening on the amandad port.
>netstat -a | grep amanda gives the following result :
>
>tcp        0      0 *:amandaidx             *:*                    LISTEN
>udp        0      0 *:amanda                *:*

That last line says it **is** listening on the amanda port (or someone
is).  So xinetd appears to be more or less happy.  It's something else
wrong that amandad is not running.

So I'll repeat one of my questions: have you gone through all of the tests
in the FAQ?  This problem is very common on new installations and the FAQ
has at least two items specifically dealing with debugging what's wrong.

>                               Bye, Antonino Casile

John R. Jackson, Technical Software Specialist, [EMAIL PROTECTED]

Reply via email to