for that we can use following shell script to find out the socket process which are still active on the ports, it will list by process id.
#!/bin/bash
# is the port we are looking for
if [ $# -lt 1 ]
then
echo "Please provide a port number parameter for this script"
echo "e.g. %content 8888?"
exit
fi
echo "Greping for your port, please be patient (CTRL+C breaks) . "
for i in `ls /proc`
do
pfiles $i
grep AF_INET
grep $1
if [ $? -eq 0 ]
then
echo Is owned by pid $i
echo ""
fi
done
Any comments ?? / Suggestions ??
Thanks
Shailesh