- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Call to mmap
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-15-2004 02:44 AM
06-15-2004 02:44 AM
When trying to start an Oracle instance we got a number of errors as follow:
/usr/lib/dld.sl: Call to mmap() failed - TEXT /u01/app/oracle/product/8.1.7/javavm/admin/libjox8_e5c3d890f9_internal_oracle_aurora_namespace_shell.sl
/usr/lib/dld.sl: Not enough space
/usr/lib/dld.sl: Call to mmap() failed - TEXT /u01/app/oracle/product/8.1.7/javavm/admin/libjox8javax_naming_directory.sl
/usr/lib/dld.sl: Not enough space
There is tree Oracle instances running, if any of them is shut down, there is no problem to start the fourth. All instances is rather small.
It seems as something hitting its limits but I cant find out what.
The server is a rp2470 with 2 CPU and 6GB memory. HP-UX 11.11 and Oracle 8.1.7.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2004 02:51 AM
06-15-2004 02:51 AM
SolutionWhen you said "three can run but not 4", it is striking me that you may be running out of shared memory space unless you are using memory windows for each of the instances. What is the bitness of oracle?. While ipcs -ma and totalling the SEGSZ can give you a good approximation.
I would also look at swap space utilization while bringing up the fourth instance.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2004 03:59 AM
06-15-2004 03:59 AM
Re: Call to mmap
I have also seen call to mmap failing when the maxdsize limits are reached .
Then there is the error of not enough space . This could be either swap or not enough available file descriptors too .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2004 04:26 AM
06-15-2004 04:26 AM
Re: Call to mmap
You may tring lowering the SGA of one of the oracle instance and try starting all instances. Also get hold of shminfo tool, start all instances one by one and get shminfo. That would help you know, how much shared memory is remaing to start the last instance.
You can also try increasing the shmmax a bit and check. Also check swap utilization.
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2004 07:09 AM
06-15-2004 07:09 AM
Re: Call to mmap
The databases is Oracle 32 bit.
It seems as you are right, I am short of shared memory. If I configure a smaller SGA for one of the instances I can get all 4 instances up. And ipcs -ma show that I am very close to the 1.7GB limit.
This problem seems to be typical for Oracle 32 bit on HP-UX. There is only 1.7GB shared memory avialable for all instances. By some mistake this databases was not converted to 64 bit (where there is no 1.7GB limit) when they where moved to new hardware.
Thank you !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2004 07:15 AM
06-15-2004 07:15 AM
Re: Call to mmap
You can consider using memory windows. Look at the file mem_wndws.txt under /usr/share/doc on any 11.0 system.
-Sri