- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- logon errors
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
02-12-2003 04:44 AM
02-12-2003 04:44 AM
What is the meaning for the folowing message -
Error couldn't open /usr/lib/dld.sl errorno:000000023
/etc/profile[40] cannot make pipe
Users are getting this some times when they log in but not all the time.... Is it related to having to many files open ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2003 04:52 AM
02-12-2003 04:52 AM
Re: logon errors
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2003 04:55 AM
02-12-2003 04:55 AM
Re: logon errors
Yes, the key indication is the error number. Error-23 is ENFILE (File table overflow). This indicates that the kernel's 'nfile' is too small. 'nfile' governs the limit on open files system-wide. You can monitor it with 'sar -v' and/or glance's system table view [toggle 't']. I suggest you increase the value of 'nfile' and regenerate your kernel.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2003 02:43 AM
02-13-2003 02:43 AM
SolutionIf you get a message with "errno" and then some number, then grep(1) the number (without the leading zeros) in /usr/include/sys/errno.h. In this case that gives:
$ grep 23 /usr/include/sys/errno.h
#define ENFILE 23 /* File table overflow */
That already gives a clue in *this* case, but in general, if the name of a system call is mentioned or implied, you look up the error *name* (ENFILE) in the respective manual page, i.e. open(2) ("man 2 open") in this case. If the system call is not menationed, you look at the *general* meaning of the error name in the errno(2) ("man errno" manual page.
In this case the meaning is "The system file table is full."/"File table overflow. The system's table of open files is full, and temporarily no more open()s can be accepted.". From this you have to conclude that it is some kernel parameter and SAM should point you to nfile.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2003 04:07 AM
02-13-2003 04:07 AM
Re: logon errors
Thanks for your help - increasing the nfile parameter did the trick.
Frank - Your nice hint that I should check out the messages fully before posting a query is correct. I was not aware of the ways for interpreting messages as you outlined.
MMC.