- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- /usr/lib/dld.sl Not Enough space - How to Address...
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-08-2006 02:19 AM
06-08-2006 02:19 AM
/usr/lib/dld.sl Not Enough space - How to Address this Issue?
We have been experiencing an increasingf frequency of this error. Some from Cobol and some from Oracle as follows:
/usr/lib/dld.sl Call to mmap() failed - TEXT /opt/cobol/lib/libcobrts.sl.2
/usr/lib/dld.sl Not enough space
/usr/lib/dld.sl Call to mmap() failed - TEXT /oracle/app/oracle/product/9.2.0.6/lib32/libclntsh.sl.9.0
/usr/lib/dld.sl Not enough space
Where could this possibly be fixed? Are there kernel parameters that we need to be looking at increasing or is this just simply a resourse issue? The environment is almost always at 100% CPU utilization but Memory/Swap are healthy as do IOs.
Any ideas/similar experiences?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2006 02:23 AM
06-08-2006 02:23 AM
Re: /usr/lib/dld.sl Not Enough space - How to Address this Issue?
What is shmmax set to?
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=861278
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=837639
Seems like a memory issue.
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
06-08-2006 02:25 AM
06-08-2006 02:25 AM
Re: /usr/lib/dld.sl Not Enough space - How to Address this Issue?
It is a memory problem. Post your #swapinfo -tam and # vmstat information to analyse further.
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2006 02:30 AM
06-08-2006 02:30 AM
Re: /usr/lib/dld.sl Not Enough space - How to Address this Issue?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2006 02:34 AM
06-08-2006 02:34 AM
Re: /usr/lib/dld.sl Not Enough space - How to Address this Issue?
Since it says:
/usr/lib/dld.sl Call to mmap() failed - TEXT
It could be a failure for a memory allocation in a text segment. Is maxtsiz or maxtsiz_64bit too low?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2006 03:22 AM
06-08-2006 03:22 AM
Re: /usr/lib/dld.sl Not Enough space - How to Address this Issue?
System is a 8-32 cpu vPar, 8GB of memory.
Is it possible this is due to short term maxing out of memory (RAM)?
max_mem_window 0 - 0
max_thread_proc 3072 - 3072
maxdsiz 0x80000000 - 0X80000000
maxdsiz_64bit 0x40000000 - 0X40000000
maxfiles 10000 - 1024
maxfiles_lim 10000 Y 10000
maxssiz 0x17000000 - 0X17000000
maxssiz_64bit 0x17000000 - 0X17000000
maxswapchunks 16384 - 16384
maxtsiz 0x18000000 Y 0X18000000
maxtsiz_64bit 0x18000000 Y 0X18000000
maxuprc 3072 Y 3072
maxusers 800 - 800
msgmax 65535 Y 65535
sema 1 - 1
semaem 32767 - 32767
semmap 4098 - (SEMMNI+2)
semmni 4096 - 4096
semmns 32767 - 32767
semmnu 16384 - 16384
semmsl 2048 Y 2048
semume 512 - 512
semvmx 32767 - 32767
shmem 1 - 1
shmmax 0x600000000 Y 0X600000000
shmmni 2048 - 2048
shmseg 2048 Y 2048
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2006 03:37 AM
06-08-2006 03:37 AM
Re: /usr/lib/dld.sl Not Enough space - How to Address this Issue?
Shared objects and that includes shared-memory segments, memory-mapped files, and shared library objects are allocated from the same address space (so maxtsiz will not help); if you must remain in 32-bit land then memory windows are your answer.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2006 04:22 AM
06-08-2006 04:22 AM
Re: /usr/lib/dld.sl Not Enough space - How to Address this Issue?
As it was mentioned above, the problem is in free memory lack for new Oracle processes.
I've resolved such problems by increasing "shmmni" parameter in the kernel or decreasing the parameter "processes" in $ORACLE_HOME/dbs/init$ORACLE_SID.ora file.
HTH