Once Hyperion services are stopped using stop.sh we observe that processes are still lingering around.
Use below command :
ps -ef|grep -i <USERNAME> | grep '<PATH>' | awk '{print $2}'
kill -9 $(ps -ef|grep i <USERNAME> | grep '<PATH>' | awk '{print $2}')
Example:
ps -ef|grep hypadmp+ | grep '/apps/Oracle/' | awk '{print $2}'
kill -9 $(ps -ef|grep hypadmp+ | grep '/apps/Oracle/' | awk '{print $2}')