- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Problems to 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
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
07-10-2006 01:53 AM
07-10-2006 01:53 AM
Every day its run a process into the server, this file remove files .. it is every hour, right now i can see like 20 of this one running, also i have a file system full, i need to kill them but i can't do it .. how can i kill them ?
i'm running:
kill -9 user-id (with root) but it can not do it !!!
Thanks ...
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2006 01:58 AM
07-10-2006 01:58 AM
SolutionIf you are running as 'root' and a 'kill -9' doesn't kill a process, then the process is in an un-killable state -- waiting on a signal, I/O completion or running in kernel code.
A full filesystem can cripple a server. Try manually removing a file, if you can, to regain space.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2006 02:03 AM
07-10-2006 02:03 AM
Re: Problems to kill processes
Kill is perhaps the worst named system call and command in UNIX. It should really be called something like "sendsignal" --- that's all a kill actually is. If a process (like yours) is waiting on a higher-priority event such as an i/o operation, it will never respond to a signal until the higher priority event is satisfied. If the system didn't work like this the things like filesystem corruption (because the signals stopped incomplete actions) would be very common.
Almost certainly, you are going to have to reboot to fix your problem but if you fix the script as I mentioned earlier, your other problems willl probably not arise again.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2006 02:16 AM
07-10-2006 02:16 AM
Re: Problems to kill processes
also, with dmesg command its reports:
DIAGNOSTIC SYSTEM WARNING:
The diagnostic logging facility is no longer receiving excessive
errors from the I/O subsystem. 7 I/O error entries were lost.
DIAGNOSTIC SYSTEM WARNING:
The diagnostic logging facility has started receiving excessive
errors from the I/O subsystem. I/O error entries will be lost
until the cause of the excessive I/O logging is corrected.
If the diaglogd daemon is not active, use the Daemon Startup command
in stm to start it.
If the diaglogd daemon is active, use the logtool utility in stm
to determine which I/O subsystem is logging excessive errors.
what does last one mean?
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2006 02:20 AM
07-10-2006 02:20 AM
Re: Problems to kill processes
I would expect 'dmesg' to contain the *critical* alerts. HP-UX is trying to help you find why it feels so "sick".
..."If the diaglogd daemon is active, use the logtool utility in stm to determine which I/O subsystem is logging excessive errors"
...means that you could run '(c)stm' [ the Support Tools Manager ] to obtain more detailed diagostic information about the execessive I/O errors. You don't need to do this, since you already know the reason for the alerts!
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2006 02:27 AM
07-10-2006 02:27 AM