- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Can't kill 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
Discussions
Discussions
Discussions
Forums
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
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-18-2006 07:56 PM
тАО09-18-2006 07:56 PM
I have problem that I can't kill some processes in my system even as root. I've used 'kill -9' and forced kill from SAM but the process are still exist. Here are the process :
ediswit 9459 1 0 12:02:49 ? 0:00 mv ./appl/DOKRKSP.066249 ./appl/DOKRKSP.066252 ./appl/DOKRKS
ediswit 3731 1 0 11:35:00 ? 0:00 mv ./appl/DOKMANIF.066248 ./appl/DOKMANIF.066250 ./appl/DOKM
ediswit 9473 1 0 12:02:49 ? 0:00 mv ./appl/DOKRKSP.066249 ./appl/DOKRKSP.066252 ./appl/DOKRKS
ediswit 3733 1 0 11:35:00 ? 0:00 mv ./appl/DOKMANIF.066248 ./appl/DOKMANIF.066250 ./appl/DOKM
ediswit 9471 1 0 12:02:49 ? 0:00 mv ./appl/DOKRKSP.066249 ./appl/DOKRKSP.066252 ./appl/DOKRKS
ediswit 9464 1 0 12:02:49 ? 0:00 mv ./appl/DOKRKSP.066249 ./appl/DOKRKSP.066252 ./appl/DOKRKS
ediswit 3732 1 0 11:35:00 ? 0:00 mv ./appl/DOKMANIF.066248 ./appl/DOKMANIF.066250 ./appl/DOKM
ediswit 9468 1 0 12:02:49 ? 0:00 mv ./appl/DOKRKSP.066249 ./appl/DOKRKSP.066252 ./appl/DOKRKS
ediswit 23493 1 0 10:31:26 ? 0:00 mv ./appl/DOKRKSP.066249 ./appl/DOKRKSP.066252 ./appl/DOKRKS
ediswit 23483 1 0 10:31:26 ? 0:00 mv ./appl/DOKRKSP.066249 ./appl/DOKRKSP.066252 ./appl/DOKRKS
ediswit 9775 1 0 12:03:35 ? 0:00 mv ./appl/DOKRKSP.066249 ./appl/DOKRKSP.066252 ./appl/DOKRKS
ediswit 23502 1 0 10:31:26 ? 0:00 mv ./appl/DOKRKSP.066249 ./appl/DOKRKSP.066252 ./appl/DOKRKS
ediswit 9476 1 0 12:02:50 ? 0:00 mv ./appl/DOKRKSP.066249 ./appl/DOKRKSP.066252 ./appl/DOKRKS
ediswit 9462 1 0 12:02:49 ? 0:00 mv ./appl/DOKRKSP.066249 ./appl/DOKRKSP.066252 ./appl/DOKRKS
ediswit 23497 1 0 10:31:26 ? 0:00 mv ./appl/DOKRKSP.066249 ./appl/DOKRKSP.066252 ./appl/DOKRKS
ediswit 23489 1 0 10:31:26 ? 0:00 mv ./appl/DOKRKSP.066249 ./appl/DOKRKSP.066252 ./appl/DOKRKS
Please give me your suggestion how to kill them without system reboot :)
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-18-2006 08:02 PM
тАО09-18-2006 08:02 PM
Re: Can't kill processes
it is difficult to judge the reason without knowning more detailed circumstances, but your processes are probably waiting for some I/O to finish.
Check if you have a bad disk, a full filesystem, or perhaps just heavy I/O load.
regards,
John K.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-18-2006 08:32 PM
тАО09-18-2006 08:32 PM
Re: Can't kill processes
can you tell us what your command was, as the mv command listed seems to be a bit confused over how many files it is supposed to move.
Normally you would have:
mv /path/a /path/b
You seem to have a lot of extra filenames
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-18-2006 08:43 PM
тАО09-18-2006 08:43 PM
Re: Can't kill processes
Because filesystems are expected to be working, there is no simple way to terminate the I/O. On the other hand, these processes aren't actually running so you don't need to worry about them. Work on the root cause of the problem (ie, networking?) and reboot later.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-20-2006 12:06 AM
тАО09-20-2006 12:06 AM
Re: Can't kill processes
To supplement what Bill wrote, every process has its own signal table which is read only when goes from kernel mode (system calls) to user mode.
So if your process made an I/O in blocked mode it is still in kernel mode and cannot read its signal table. It happens mostly on devices that may be unplugged like network cables, USB keys, floppy disks, DVD, etc.
It is useless to send several times a same signal to a same process. For instance executing
kill -9 12345
only means to write a 1 in the 9th square of the signal table of the process whose ID is 12345. Sending another number 9 signal means to write a 1 in the same square where a 1 has already been written previously.
When the device where stands your filesystem becomes available, perhaps your process will end.
Regards,
JPH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-20-2006 12:56 AM
тАО09-20-2006 12:56 AM
SolutionPossible solution:
1) Use fuser to kill them
2) If NFS is the bottleneck, and it is down, then create a false IP-alias with same NFS IP in your working server and try to kill the process.
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-10-2006 01:30 AM
тАО10-10-2006 01:30 AM
Re: Can't kill processes
fuser -ku nfsserver:/nfs_dir
Thank you for all of your suggestions.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-10-2006 01:32 AM
тАО10-10-2006 01:32 AM
Re: Can't kill processes
fuser -ku nfsserver:/nfs_dir
Thank you for all of your suggestions.