#!/bin/ksh

ttdb=`ps -ef | grep -v grep | grep rpc.ttdbserverd | awk '{ print $2 }'`
if [ "$ttdb" != "" ] ; then
        kill $ttdb
fi
