Sponsored Content
Full Discussion: Svhptdaemon
Operating Systems HP-UX Svhptdaemon Post 302989055 by Peasant on Friday 6th of January 2017 02:03:49 PM
Old 01-06-2017
Using tools such as lsof or truss, if you have them installed.
Code:
truss -rall -wall -p PID

Examine the calls, perhaps some file is missing and program runs continuously in loops or similar issues (could explain the large %sys usage)

Also issue a find to perhaps to locate from which script is that spawned as rbatte suggested.


Something in the line of :
Code:
find /sbin/init.d -type f -exec egrep "svhptdaemon|svhpt" {} /dev/null \;

If you get a match, examine that script for possibility to disable that and what that is actually.
Perhaps i can offer more assistance in couple of days when i get to hpux box.

Hope that helps
Regards
Peasant.
 
GETDELAYS(1)						      General Commands Manual						      GETDELAYS(1)

NAME
getdelays -- Display delay statistics SYNOPSIS
getdelays -c command getdelays -p pid getdelays -t tid DESCRIPTION
The getdelays utility helps pin-point possible resource shortages when running an application. The SLES10 kernel includes patches to imple- ment delay accounting, which measures the time a process spends waiting for disk I/O, swap I/O and CPU time slices. For example, if an application is running rather slowly, delay accounting can tell you where it spends all its time. For instance, when the CPU delay is high, this means the application is competing with other proces for run time, but is losing quite often. High memory delays mean that the sum of applications running on this system need more physical memory than is available, and are swapping quite a lot. In order to enable delay accounting, you need to specify delayacct on the kernel command line when booting the system. Getdelays has three modes of operation: getdelays -c command This will invoke command and print a summary of delay statistics when the command finishes. getdelays -p pid This will print the current delay statistics of the process identified pid. getdelays -t tid This will print the current delay statistics of the thread group identified tid. AUTHOR
Balbir Singh, IBM Corp. Shailabh Nagar, IBM Corp. Manpage contributed by Olaf Kirch <okir@suse.de> April 13, 2006 GETDELAYS(1)
All times are GMT -4. The time now is 09:46 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy