- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Assistance required
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
06-20-2001 01:00 AM
06-20-2001 01:00 AM
followed by : /usr/lib/dldsl : not enough space
The system is not live yet and no one is using it except for the occasional testing.
Last occured one week ago and the memory usage since then has increased from 23% to 34% and the secondary swap has gone from not being used to 3%, the primary swap still stands at 0%. No one is on the system except myself and I'm sat at the shell below root.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2001 01:26 AM
06-20-2001 01:26 AM
Re: Assistance required
Hope this gives you some pointers......
-ChaZ-
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2001 01:43 AM
06-20-2001 01:43 AM
Re: Assistance required
I've got this problem to. You should consider a swap space from 3 to 4 times the amount of memory.
You gave a precision on the swap percentage used but you must also consider what the hp-ux intend to reserve space on the swap !
This value of RESERVING space can exceed what the available swap area have. So, in this case mmap appear !!!
Good luck
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2001 01:56 AM
06-20-2001 01:56 AM
SolutionIt sounds as though a process has some sort of memory leak and is eating up swap space.
'mib2agt' used to do this on HP-UX 11.00 if patch PHSS_21046 wasn't installed. You'd have to check the equivalent patch for 11.10.
You can list processes in Virtual Set Size order with the following simple script:-
UNIX95= ps -e -o ruser,vsz,pid,args | sort -rnk2 | more
(Attributable to Bill Hassell). Note the space after = is required. The second field output is the process virtual set size in Mb and the output is sorted in descending order of process size.
Hope this helps.
Regards,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2001 02:18 AM
06-20-2001 02:18 AM
Re: Assistance required
Weve had a similar problem.
Some process/application is definitely gobbling up all your swapspace. Slowly, but surely. You need to monitor you server constantnly day by day to find the culprit. Eventually we did, it was an Oracle IFS deamon which has a huge memory leak - still not resolved except by retsarting the application every night!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2001 02:50 AM
06-20-2001 02:50 AM
Re: Assistance required
Hi
I think U can solve this problem by loading dld.sl patch. There are latest patch available for dld.sl. And U told that swap size is increasing. I am not sure, But it may be because of some NFS related problem. Once I faced this, I could solve this by stoping and starting NFS client and server services. U can also try the same. For that
# cd /sbin/init.d
#./nfs.client stop
#./nfs.server stop
#swapinfo
#./nfs.clent start
#./nfs.server start
Best of luck
Shahul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2001 12:49 AM
06-22-2001 12:49 AM
Re: Assistance required
Thanks again to all of you.