About Me

Anjum Ara I am a technology enthusiast, an ardent reader. My latest interest is virtualization. In my free time, I love understanding child nutrition, child holistic development. I bake, read, paint, and do whatever it takes to improve myself every day.

Thursday, May 11, 2023

Kill all Hyperion services after using stop.sh

 

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}')

Share: