- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- I can not kill -9 processes
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2004 03:05 AM
09-28-2004 03:05 AM
ps -ef | grep power
root 2343 1 0 Sep 26 ? 0:00 powermt check
root 4386 1 0 Sep 26 ? 0:00 powermt check
root 26459 1 0 08:27:36 ? 0:00 powermt -dispaly
root 5745 1 0 10:10:47 ? 0:00 powermt check
root 15778 15244 1 08:24:20 pts/tj 0:00 grep power
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2004 03:08 AM
09-28-2004 03:08 AM
SolutionThere are no alternatives.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2004 03:10 AM
09-28-2004 03:10 AM
Re: I can not kill -9 processes
If a kill -9 won't get rid of them, they must be waiting for I/O to complete. They're un-signalable in this state. The only way to get rid of them is to somehow force the I/O to complete, but that's probably not possible.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2004 03:13 AM
09-28-2004 03:13 AM
Re: I can not kill -9 processes
Wait for system there is a chance that process whose PPID will be 1 then it will be removed from system some time later.
But only good way is to,
1> shutdown / reboot
HTH.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2004 03:25 AM
09-28-2004 03:25 AM
Re: I can not kill -9 processes
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=705061
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2004 03:27 AM
09-28-2004 03:27 AM
Re: I can not kill -9 processes
Try -l in that ps command - EX: ps -fl | grep power. Then look at the PRI column - IF it's between 128 <-> 153 then it's in the kernel range & it's totally unkillable because it's unsignalable as Pete point's out.
But, hey, if it's not eating up CPU time & it's not sitting on gobs of memory - who cares?
My 2 cents,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2004 03:41 AM
09-28-2004 03:41 AM
Re: I can not kill -9 processes
Or
In my hope also these are processes waiting for parent to exit..Or it can be deadlock situation where they will never get the required resource and they are hung. Your next reboot will take care of them..
Hope it helps
Prashant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2004 04:16 AM
09-28-2004 04:16 AM
Re: I can not kill -9 processes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2004 08:39 AM
09-29-2004 08:39 AM