- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Hung Process
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-02-2003 06:47 AM
09-02-2003 06:47 AM
Our tech staff has been unsuccessful with tracing the root cause of the problem - only upon restarting the box and performing the magical kill -9 command with the root access, does the problem seem to go away - until the next evenings clean-up process kick-off.
I am unable to kill the process myself.
Unable to truss the problem.
Can???t seem to get the UNIX admin staff to do anything other than cold startup and kill command - only fixes the symptom and not the problem.
Any advice?
Any sort of fix disk command or known hardware issue that I can recommend to our UNIX gurus look into?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2003 07:02 AM
09-02-2003 07:02 AM
Re: Hung Process
You may need to caught the error-output of
this row. Try to do "rm" without cron, by
command row. Did you see any message?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2003 07:05 AM
09-02-2003 07:05 AM
Re: Hung Process
sounds like something has changed on the box...
* Are all the filesystems that the rm script deletes stuff from local? Or are any NFS? Check whether there are any stale nfs file handles (bdf command). Maybe its just tripping up over one of those.
* Is it just a simple rm in the script or does it do anything fancier? In case its not a problem with the rm command in the script, maybe with one of the other commands?
* Can you run the script manually, or even better (depending on the script) run each line from the script manually? That should show you exactly where in the script its having problems and you might even get an error message if you're lucky.
* if you can't run the script manually, does it log its output into a file? Or can you get it to send its output to a logfile?
hope that helps,
Kevin.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2003 07:08 AM
09-02-2003 07:08 AM
SolutionI am making the assumption that this is a local filesystem rather than NFS/automount.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2003 07:19 AM
09-02-2003 07:19 AM
Re: Hung Process
I would take a close look at your "file content directory". If you have not changed anything then there is probably something in it which causes problems for rm to continue, this could be something like a subdirectory consisting of non-printing characters only or a file name containing semicolon, circular soft links or whatever weird can happen.
Ideally you would create a new "file content directory" and copy over ONLY what you need, carefully examining each file and directory.
As a preparation I would cd into it and do
# find . > /tmp/check_names_list
# find -type l | xargs ll > /tmp/check_link_list
Go through that list to rule out things I mentioned above.
Regards,
Bernhard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2003 08:52 AM
09-03-2003 08:52 AM
Re: Hung Process
Run online diagnostics on local hard drives.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2003 12:10 PM
09-03-2003 12:10 PM
Re: Hung Process
sh -x "script name" from the command line.
This should show you where it is hanging.