Dead SSH Connections from script

Richard Hobbs richard.hobbs at crl.toshiba.co.uk
Mon Jul 19 16:26:06 UTC 2004


Hello,

This script is causing problems... for some reason it keeps leaving dead SSH
connections around, which actually caused the server to run out of file
handles, reporting (too many open files).

Is there something wrong with the script??

Thanks in advance to anyone who can help, here's the script:

======================================================================
#!/bin/csh -f

set NPARAMS = 1
if ($#argv != $NPARAMS) then
        echo "Usage: $0 <list of automount hosts>"
        exit 1
endif
set HOSTLIST = $1
shift
set P1 = $1
set P2 = $2

set FILENAME=/project2/remote/automountresults`date "+%Y%m%d%H%M%S"`.txt
echo Automount auto.rmt results > $FILENAME
foreach host (`cat $HOSTLIST`)
        echo $host
        echo $host >> $FILENAME
        /usr/bin/scp /project2/remote/auto.rmt $host":/tmp/"
        /usr/bin/scp /project2/remote/automountconfig $host":/tmp/"
        /usr/bin/ssh root@$host /tmp/automountconfig >> $FILENAME
end
======================================================================

Thanks,
Hobbs.

--
Richard Hobbs (Systems Administrator)
Toshiba Research Europe Ltd. - Speech Technology Group
Web: http://www.toshiba-europe.com/research/
Email: richard.hobbs at crl.toshiba.co.uk
Tel: +44 1223 376940        Mobile: +44 7811 803377

http://unixforum.co.uk  http://hififorum.co.uk



_____________________________________________________________________
This e-mail has been scanned for viruses by MCI's Internet Managed Scanning Services - powered by MessageLabs. For further information visit http://www.mci.com





More information about the redhat-list mailing list