kill -9 `ps -ef : grep -i applmgr : grep -i 889 : grep -v grep : awk '{print $2}'`
ps -efw : grep -i applmgr : grep
Note: Kindly replace colon (:) with pipe sign
Happy Troubleshooting !!!
Purpose of creating this blog to help Apps DBA's to troubleshoot issues while working in day to day activites.
1 comment:
Hi Sundeep,
You can also try this variation:
ps -ef |grep applmgr|grep -v grep |awk '{print $2}'|xargs kill -9
- Vikram
Post a Comment