- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Memory error on HP-UX 11
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-13-2000 07:39 AM
07-13-2000 07:39 AM
One of my K460, 11.00 box gave some problems this morning. It was sort of hung for users. I tried logging in , even from console and it cam eback saying:
GenericSysName [HP Release B.11.00] (see /etc/issue)
Console Login: root
/usr/lib/dld.sl: Call to mmap() failed - BSS /usr/lib/libnsl.1
/usr/lib/dld.sl: Not enough space
GenericSysName [HP Release B.11.00] (see /etc/issue)
Console Login:
To me it looked a memory problem . so after asking a few users to logout, I was able to get in. In glance it showed me memory and swap 100 % full. It stopped working glance also after some time for memory problem. In top I couldnt find any process using lot of memory or cpu.
My question is why this could have happened and how do you pinpoint to a process as culprit?
I ended up rebooting the box by the way.
Thanks for you imputs.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2000 07:43 AM
07-13-2000 07:43 AM
Re: Memory error on HP-UX 11
The error message you found indicates that the system is running out of process space trying to map shared library data into the BSS area. The most common solution to this error is to increase the swap.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2000 07:54 AM
07-13-2000 07:54 AM
Re: Memory error on HP-UX 11
root@pcsdew:/:>swapinfo
Kb Kb Kb PCT START/ Kb
TYPE AVAIL USED FREE USED LIMIT RESERVE PRI NAME
dev 1048576 142476 906100 14% 0 - 1 /dev/vg00/lvol2
reserve - 906100 -906100
memory 1565952 1526980 38972 98%
thanks again.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2000 07:55 AM
07-13-2000 07:55 AM
SolutionSee document no.: KBRC00003021
http://us-support.external.hp.com/cki/bin/doc.pl/
It seems patch PHSS_21046 solves this specific issue.
Brian
<*(((>< er
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2000 09:53 AM
07-13-2000 09:53 AM
Re: Memory error on HP-UX 11
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2000 10:40 AM
07-13-2000 10:40 AM
Re: Memory error on HP-UX 11
root@pcsdew:/:>swapinfo
Kb Kb Kb PCT START/ Kb
TYPE AVAIL USED FREE USED LIMIT RESERVE PRI NAME
dev 1048576 142476 906100 14% 0 - 1 /dev/vg00/lvol2
reserve - 906100 -906100
memory 1565952 1526980 38972 98%
This display shows that swap is fully allocated. You have (roughly) 1GB of disk swap available. 140MB is being actively used for paging. The remaining 900MB is in reserve -- that means the kernel has set the space aside to page processes already running if necessary. The memory line indicates that 98% of available memory swap (which is generally about 75% of physical memory) is in use.
If the patch does not solve your problem (I presume by correcting for improper allocation of swap space), then I would try adding more disk swap. Actually, even if the patch does solve your immediate problem you might want to investigate more disk swap if those swapinfo numbers do not drop sharply.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2000 11:32 AM
07-13-2000 11:32 AM
Re: Memory error on HP-UX 11
However , I still have one unanswered question. How do I find out which process is the memory hog. I could not find it in top or glance.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2000 12:21 PM
07-13-2000 12:21 PM
Re: Memory error on HP-UX 11
ps -e -o "user,pid,ppid,sz,vsz"
(does anyone else miss the ability to use things like "ps gv"?)
If not, then you can use glance/gpm. Loathe as I am to admit it, the GUI is actually better in this case. In gpm, go to
reports->process list-> configure->sort fields
Then select the fields Resident Memory and Virtual memory to sort by resident set size or virtual memory size as desired.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2000 01:04 PM
07-13-2000 01:04 PM
Re: Memory error on HP-UX 11
ex:
export UNIX95=1;ps -e -o "user,pid,ppid,sz,vsz,comm" | sort -rn +4|more