- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- OS Problem
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
03-06-2004 07:38 PM
03-06-2004 07:38 PM
Can you please help, what is the OS problem? The OS is HPUX 11.11.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2004 07:53 PM
03-06-2004 07:53 PM
SolutionIt could be due to
1. Insufficient swap space. Run "swapinfo -t" command and see if the total is near 100%. If so, then you will need to add more swap or bring down unnecessary processes.
2. Insufficient filesystem space in the directory used by your billing job. A 'bdf /your_filesystem' will show you how much you have. If you don't know what that filesystem is then do 'bdf' and note all the filesystems that are above 90% and see if anyone of them are used by your billing job.
It's most unlikely due to any kernel parameter settings as I believe the same job was running before on this system.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2004 08:04 PM
03-06-2004 08:04 PM
Re: OS Problem
Could be not enough processes nproc,nfile
Quick fix on that is to up the maxusers parameter on the kernel.
You can check termination as follows.
at the prompt:
scriptname
rc=$?
echo $rc
I'm not sure you really got a code zero normal termination there. In the circumstances you describe, you should have gotten an error code.
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
03-06-2004 08:10 PM
03-06-2004 08:10 PM
Re: OS Problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2004 08:44 PM
03-06-2004 08:44 PM
Re: OS Problem
Unless you write a custom script to collect such data, nothing is recorded except.
If a filesystem was full and the system has not been booted there might be a record in /var/adm/syslog/syslog.log
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
03-06-2004 08:52 PM
03-06-2004 08:52 PM
Re: OS Problem
If you have measureware installed, you can pull the historical data using the command 'extract'. It's a self-guiding utility that can take you through step-by-step process. During extraction it will generate a default template file with all the metrics (most of the metrics carry meaningful names GBL_SWAP_SPACE_UTIL for global swap space utilization) and you will need to uncomment the metrics that you need to get report on. You can specify the interval during which your job failed so only the metrics during that interval will be extracted.
If you don't have measureware, you can't do much other than waiting for another unlucky opportunity as it didn't give you an error message. Kernel parameters like nfile, nproc usually generate syslog messages if overflown.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2004 09:37 PM
03-06-2004 09:37 PM
Re: OS Problem
Can't sleep? Me neither
Try this:
http://hpux.connect.org.uk/hppd/hpux/Sysadmin/tusc-7.5/
Its called tusc.
You can call it like this in your script
proc=$$
/usr/contrib/bin/tusc -f -o $TRACE_FILE -p $proc &
TRACE_FILE is a file you collect data in. -f traces forces procis the process id you picked up with the $$ command.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com