- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Problem on dld
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
09-12-2002 01:41 AM
09-12-2002 01:41 AM
Problem on dld
On HP-UX 11.0, we are facing some problems. Intermittently, it is givin problems like the following :
crt0: ERROR couldn't open /usr/lib/dld.sl errno:000000023
But this problem is not continuous. Some times, it comes up and sometimes, there is no problem.
When there is problem, normal commands don't work and gives the same problem.
Any idea.
Thanks in advance.
Soumen Ghosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2002 01:51 AM
09-12-2002 01:51 AM
Re: Problem on dld
Seen it before . Kernel tuning
Suggest change the following kernel
parameters and generate a new kernel:
npty: Double it
maxusers: + 50%
Steve steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2002 02:55 AM
09-12-2002 02:55 AM
Re: Problem on dld
Thanks for the answer.
The system's syslog tells that the problem is because of "File table overflow".
I believe value of "nfile" system parameter is to be increased.
Now, how do I need to consider the system resource constraint?
My system is a K-class system with HP-UX 11.0 running on 512 MB ram. It has got one processor. Can I increase "nfile" parameter value arbitrarily? Or would it affect the system performance? What is the optimal value of "nfile" I have to reach?
The most resource consuming processes are Tomcat, Oracle. Because tomcat is a multi-threaded server, it is taking away 3 file descriptors for each thread, I believe.
How do I reach the optimum value of "nfile" system parameter without affecting system performance?
Thanks in advance.
Soumen Ghosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2002 03:30 AM
09-12-2002 03:30 AM
Re: Problem on dld
have a look at this thread: http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x399d93e260b0d611abdb0090277a778c,00.html
It's the same problem. As explained there nfile is calculated from maxuser, increase maxuser.
regards
Dirk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2002 08:42 AM
09-12-2002 08:42 AM
Re: Problem on dld
Try this
16*(nproc+16+maxusers)/10+32+2*(npty+nstrpty+nstrtel)
Regards,
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2002 09:08 AM
09-12-2002 09:08 AM
Re: Problem on dld
Looks like a permission issue.
Try this link,
http://support2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000062976095
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2002 09:16 AM
09-12-2002 09:16 AM
Re: Problem on dld
If you look up the error number in '/usr/include/sys/errno.h' you will note that number-23 is a file table overflow.
This relates to the 'nfile' kernel parameter:
http://docs.hp.com/hpux/onlinedocs/939/KCParms/KCparams.OverviewAll.html
You will thus need to increase it and regenerate your kernel.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2002 08:07 PM
09-12-2002 08:07 PM
Re: Problem on dld
Thanks everybody for the answer.
Undoubtedly, it is happenng because of too low a value of 'nfile' system parameter.
I want to know specifically whether I can increase the value without worrying about the system performance.
Our system is a K-class with 512 MB ram running on single processor.
Would increase in 'nfile' system parameter decrease system performance?
Thanks.
Soumen Ghosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2002 02:13 AM
09-13-2002 02:13 AM
Re: Problem on dld
You asked if "Would increase in 'nfile' system parameter decrease system performance?"
First, you're *not* getting optimal performance because of the 'nfile' ceiling -- it's too low to allow all your processes to run.
You need to increase 'nfile' to *improve* performance. 'nfile' specifies the number of elements in the file descriptor table. By doing so, it defines the number of files that can be open simultaneously, system-wide.
Its consumption of memory is very minimal, so allocate 'nfile' generously.
Regards!
...JRF...