- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- dld.sl permission denied message
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
04-27-2003 07:29 AM
04-27-2003 07:29 AM
dld.sl permission denied message
/usr/lib/dld.sl: Call to mmap() failed - TEXT /ud/unidata-5.2.29/lib/libodbc.sl
/usr/lib/dld.sl: Permission denied
I've compared the the perms of the files it's complaining about to other working systems, and they are all correct.
Any help would be greatly appreiciated.
Thanks,
Bob Moore
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2003 07:35 AM
04-27-2003 07:35 AM
Re: dld.sl permission denied message
How much memory does this system have compared to your other working systems? Also, how do the kernel parameters compare? What does 'swapinfo' report on this box?
You could be running out of swap space and or memory.
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2003 08:07 AM
04-27-2003 08:07 AM
Re: dld.sl permission denied message
In this kind of problem you would ideally use tusc to trace the process. Look for the last open() before the mmap fails, or track back using the file descriptor - this should show the file that is causing the problem. Also remember the userid on the system may not have the same priveldges/access rights than on the working system.
If you don't have tusc installed it is available here:
http://hpux.connect.org.uk/hppd/hpux/Sysadmin/tusc-7.3/
Regards,
James.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2003 09:30 PM
04-27-2003 09:30 PM
Re: dld.sl permission denied message
You need to also check the directory level permissions.
It should be
$ ll -d /
drwxr-xr-x 45 root root 2048 Nov 8 12:34 /
$ ll -d /lib
dr-xr-xr-x 4 bin bin 1024 Oct 23 12:11 /lib
$ ll -d /lib/dld.sl
-r-xr-xr-x 1 bin bin 69632 Nov 17 1994 /lib/dld.sl
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2003 12:21 AM
04-28-2003 12:21 AM
Re: dld.sl permission denied message
Could be the the file you try to mmap() does not have either read access or execute permission for the user of the process trying to perform the mmap() .
See the mmap() man page, in the ERRORS section and /usr/include/sys/errno.h
Steve Steel