- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: dld.sl - Please help
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
10-05-2000 11:56 AM
10-05-2000 11:56 AM
dld.sl - Please help
I am getting a error message while running glance / make / sam on my
system running HP UX. This started to happen since morning.
Error message
/usr/lib/dld.sl: Call to mmap() failed - TEXT /usr/lib/libC.2
/usr/lib/dld.sl: Not enough space
/usr/sbin/sam[220] : 5597 Abort (coredump)
Could you please let me know what's happening.
Thanks - Subbu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2000 12:02 PM
10-05-2000 12:02 PM
Re: dld.sl - Please help
Do:
# swapinfo -ta
I suspect that you are running out of swap space. You may need to add more.
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2000 12:04 PM
10-05-2000 12:04 PM
Re: dld.sl - Please help
-GK.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2000 12:12 PM
10-05-2000 12:12 PM
Re: dld.sl - Please help
What's the O/S, I think there's a bad linker (PHSS_20014) patch about that's been superceeded and affects sam etc ...... nothing like that installed ? .... it may also be worthwhile getting the latest dld.sl patch on if swap is not the issue ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2000 12:17 PM
10-05-2000 12:17 PM
Re: dld.sl - Please help
OK if swap doesn't seem to be a problem...what's changed recently? Were Glance/make/SAM running OK before today? Any new patches loaded, like for SAM?
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2000 12:31 PM
10-05-2000 12:31 PM
Re: dld.sl - Please help
It's really wierd. I have not applied any patches or installed any applications.
This system runs 11.0 / 12GB RAM / 32GB Swap.
We run several SAP instances on this. I shutdown one SAP instance and
now Glance works fine. Looks like this may show up again.
Interestingly, my swap utilization is only 45% < I stand corrected in my earlier message>.
My maxswapchunks = 16384 and swchunk - 2048.
As you rightly said this may be a swap problem, but why does glance show only
45% utilization.
The main memory available is 1.4Gb.
I was wondering if you can help.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2000 12:47 PM
10-05-2000 12:47 PM
Re: dld.sl - Please help
It's really wierd. I have not applied any patches or installed any applications.
This system runs 11.0 / 12GB RAM / 32GB Swap.
We run several SAP instances on this. I shutdown one SAP instance and
now Glance works fine. Looks like this may show up again.
Interestingly, my swap utilization is only 45% < I stand corrected in my earlier message>.
My maxswapchunks = 16384 and swchunk - 2048.
As you rightly said this may be a swap problem, but why does glance show only
45% utilization.
The main memory available is 1.4Gb.
I was wondering if you can help.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2000 01:19 PM
10-05-2000 01:19 PM
Re: dld.sl - Please help
Maybe you need some more recent patches. A search of the patch database for "dld.sl" turned up two patches that you could consider applying:
PHCO_22076 (libc cumulative)
PHSS_21947 (ld and linker cumulative)
Neither patch requires a reboot.
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2000 11:48 PM
10-08-2000 11:48 PM
Re: dld.sl - Please help
The dld load libraries in shared memory, look at yours shared memory limit in the kernel parameter(shmmax). Be aware that all 32 bits application must share 1.7 GB of shared mem on the system ( almost need for oracle'SGA)
The command "ipcs -ma" show the shared in use. There is no way to see the remaining amont of shared available. You must used a small C program to lock and release shared mem.
Here a exemple with 10 MB, run it with a specific user (not root) if it fail you can remove the entry with ipcrm for your user.
#include
#include
int myshmid;
int size_shm;
size_shm = 10000000;
main()
{
printf("%dn",sysconf(_SC_CLK_TCK));
printf("%dn size ");
printf("%dn", size_shm );
printf("n");
/* ticks = sysconf(_SC_CLK_TCK); */
myshmid = shmget (IPC_PRIVATE, size_shm, 0600);
printf("%dn", myshmid );
shmctl (myshmid, IPC_RMID, 0);
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2001 10:40 AM
07-30-2001 10:40 AM
Re: dld.sl - Please help
1) The environment variables are wrong
(Maybe not the case here)
2) The shared library's (and software) do not match. Meaning the shared libaray's are 64 bit and the software is 32 bit.