cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

how kill process on OS level

Former Member
0 Likes
3,191

Dear Team,

I am using HPUX and ECC 6.0 on Oracle 10. I want to kill process on HP Unix lavel i.e PID 5346

How I will kill this one. From Witch login I log system ? i.e orasid or sidadm .

Plz help

View Entire Topic
Former Member
0 Likes

Hi,

First do a ps -ef| grep <PID>

This shows you who the owner of the process is, if it is owned by <sid>adm ora<sid> kill it using <sid>adm or ora<sid>.

It it is owned by anyone other than the above kill using root.

syntax is: kill <PID> or if you want to use the hard kill then kill -9 <PID>.

Hope this helps.

- Regrads, Dibya

Former Member
0 Likes

Thanks for your reply

Thanks

manu