not able to kill find with kill -9


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers not able to kill find with kill -9
# 1  
Old 01-04-2007
not able to kill find with kill -9

Hello everyone

I am using HP Ux and had run a find command. Now I am trying to kill it with kill or kill -9 but it is not getting killed and still running. Any clues ?

Thanks
Sidhu
# 2  
Old 01-04-2007
Strange! Smilie

Are you sure that you are not getting any < operation not permitted >

Hope you had verified the status of the find process whether its running or not even after issuing kill -9.

Possible mistake could ( not sure ) identification of find -pid.

kindly confirm the same
# 3  
Old 01-04-2007
hehehe...ya strange.....but I have confirmed. it is still running...have been using Unix for close to 2 years Smilie

can you have look at http://forums.macosxhints.com/showth...threadid=11967

Thanks
Sidhu
# 4  
Old 01-04-2007
One of 'many reasons' it cannot be killed right away is maybe the process is waiting for some I/O to complete ...
# 5  
Old 01-04-2007
Quote:
Originally Posted by Amardeep
hehehe...ya strange.....but I have confirmed. it is still running...have been using Unix for close to 2 years Smilie

can you have look at http://forums.macosxhints.com/showth...threadid=11967

Thanks
Sidhu

Mods, I know this contributes nothing to the thread, but replies like this irk me.

Matrixmadhan is trying to offer some help to you, without you giving any specifics other than " I can't kill a process with kill -9", yet you respond with "hehehe" and "have been using unix for close to 2 years". Obviously your using unix close to 2 years don't do you much good, since you cannot kill a process and can't figure out why. And a link to a forum dealing with MacOS issues is pretty useless. Now, you probably could've followed the example of the link you posted, and at least posted the outputs of ps, lsof, fuser, etc and the command you are using.
# 6  
Old 01-04-2007
Quote:
Originally Posted by System Shock
Now, you probably could've followed the example of the link you posted, and at least posted the outputs of ps, lsof, fuser, etc and the command you are using.
I completely agree with this sentiment and I'll add that I'm fustrated that no indication of which version of HP-UX was mentioned...I suspect 10.20. But still, if you find a thread to be fustrating, please just ignore it and move on.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

Way to find source of a kill -9 in Solaris

Hello Guys, Someone or, some tool has killed the application process with signal 9 (kill -9) . How to track that in Solaris? On AIX we can use light-weight tool called ProbeVue to track it but not sure how to do it on Solaris. Appreciate your help. Kelly (3 Replies)
Discussion started by: aixusrsys
3 Replies

2. HP-UX

Way to find source of a kill -9 in HP-UX

Hello Guys, Someone or, some tool has killed the application process with signal 9 (kill -9) . How to track that in HP-UX? On AIX we can use light-weight tool called ProbeVue to track it but not sure how to do it on HP-UX. Appreciate your help. Kelly Closed because this is... (0 Replies)
Discussion started by: aixusrsys
0 Replies

3. Shell Programming and Scripting

Find the Pid and Kill the Process after a Few Minutes

hi guys i had written a shell script Display Information of all the File Systems i want to find the pid and kill the process after few minutes.how can i obtain the pid and kill it??? sample.sh df -a >> /tmp/size.log and my cron to execute every minute every hour every day * *... (5 Replies)
Discussion started by: azherkn3
5 Replies

4. Shell Programming and Scripting

Kill an specific process ID using the KILL and GREP commands

Good afternoon I need to KILL a process in a single command sentence, for example: kill -9 `ps -aef | grep 'CAL255.4ge' | grep -v grep | awk '{print $2}'` That sentence Kills the process ID corresponding to the program CAL255.4ge. However it is possible that the same program... (6 Replies)
Discussion started by: enriquegm82
6 Replies

5. Shell Programming and Scripting

shell script to find a process by name and kill it

hi, Am a newbie to unix and wasnt able to write script to my requirement. I need a shell script, which should find a process by name and kill it. For eg: let the process name be "abc". I have different processes running by this name(abc), so should kill them all. Condition would be: if... (7 Replies)
Discussion started by: fop4658
7 Replies

6. AIX

How to find out and kill all processes for a user?

Hi! We are using AIX 5.3. Can anyone please guide me to find out all the running processes for a specific user, say ' admin' and also kill them by force. Thanks! atech (9 Replies)
Discussion started by: atechcorp
9 Replies

7. Linux

Kill a process without using kill command

I want to Kill a process without using kill command as i don't have privileges to kill the process. I know the pid and i am using Linux 2.6.9 OS. (6 Replies)
Discussion started by: sudhamacs
6 Replies

8. Shell Programming and Scripting

Kill a process without using kill command

Sorry, posted the question in other forum. (0 Replies)
Discussion started by: sudhamacs
0 Replies

9. Programming

kill(0,-9) don't kill the process

Hi all i have simple c program , when i wish to kill the app im using kill(0,-9) , but it seams this command don't do any thing and the program. just ignore it . what im doing wrong here ? im using HP-UX ia64 Thanks (9 Replies)
Discussion started by: umen
9 Replies

10. UNIX for Advanced & Expert Users

When kill doesnt work, how to kill a process ?

Hi All, I am unable to kill a process using kill command. I am using HP-UX system. I have tried with kill -9 and i have root privilages. How can i terminate this daemon ? ? ? Regards, Vijay Hegde (3 Replies)
Discussion started by: VijayHegde
3 Replies
Login or Register to Ask a Question