- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- syslog error: No buffer space
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
Discussions
Discussions
Discussions
Forums
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
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-05-2001 10:37 AM
тАО09-05-2001 10:37 AM
syslog error: No buffer space
Telnet/TCP:accept:No buffer space available.
I have not found a description of what this error message means. I would appreciate any information about this error message.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-05-2001 10:56 AM
тАО09-05-2001 10:56 AM
Re: syslog error: No buffer space
ENOBUFS - No buffer space available. Error No: 233.
Below is the explanation from the thread
http://forums.itrc.hp.com/cm/QuestionAnswer/1,1150,0x286087dc4d7dd5118ff00090279cd0f9,00.html
//start
Why 11.0 accept() can cause ENOBUFS?
====================================
The description has not been changed at 11.0. However, the implementation of accept() system call was changed at 11.0(Transport stack has changed drastically due to STREAMS based TCP/IP). And it can return -1 with
errno=ENOBUFS based on the condition of "the queued socket connect request is aborted". Here, this means the transport stack received RST just after SYN was received. If RST comes
before accept() is done, this situation can happen.
On 10.X, if this happens, the connection was just silently dropped.
How this error should be handled ?
==================================
If this can be seen with existing application, just ignore the error. Since this can happen when we receive RST just after SYN, the connection request is anyway cancelled.
There should be no serious problem.
If the application aborts with this error situation, it should be re-written so that it will retry accept() system call. ENOBUFS is usually indicating transient error. So,
aborting the application just by seeing this error once should not be proper action. The application should be modified so that it gets more robustness.
//END
Does this help you?.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-05-2001 11:01 AM
тАО09-05-2001 11:01 AM
Re: syslog error: No buffer space
Try two things
1. I assume y have this problem with Oracle , try adding one more listner .
2. Go to the link
http://forums.itrc.hp.com/cm/QuestionAnswer/1,1150,0x700aa22d6d27d5118fef0090279cd0f9,00.html
which essentially explains that :
when a new connect request arricves at the local tcp and it is immediately followed by a RESET from the remote system , the server application is awakened twice by the request to perform ( accept ( ) calls ) . Each is returned bu ENOBUFS or HP Error 233. The problem is the acceptin server application should not be awakened twice . This was caused by mishandling the connection id in the TPI messages . The problem is fixed by correctly tracking the connection id between the socket and TCP layers.
Also try loading the following patch PHNE_23456 to get more clues.
Try bufpages defines the number of 4096-byte memory pages in the file-system buffer cache.
See http://docs.hp.com/hpux/onlinedocs/os/KCparam.BufPages.html
HTH
Vito
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-05-2001 12:09 PM
тАО09-05-2001 12:09 PM
Re: syslog error: No buffer space
10 and 5 percent accordingly is what we are set at.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-05-2001 01:04 PM
тАО09-05-2001 01:04 PM
Re: syslog error: No buffer space
Sridhar, I am trying out the commands in the thread, but the netsat optins don't match so I am trying to find an equivelent that shows the detail. Thanks for the info.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-11-2001 04:17 AM
тАО09-11-2001 04:17 AM
Re: syslog error: No buffer space
There's a high probability that what is causing these messages is some host somewhere, connecting to the telnet TCP port, then disconnecting via RST immediately.
First try to enable connection logging with inetd e.g. inetd -l from the command line, you do this while inetd is running. The -l option is a "toggle switch" so if logging is off, it is turned on, and if it is on, it is turned off. You can run the command multiple times.
If that fails you will want to collect a sniffer and/or nettl trace on the system and watch those hosts conneting via telnet (TCP port 23) and determine if they are legitimate clients and also review these telnet conversations. You may need to engage a network specialist or consultant to assist you in this endeavor.
I recommend the above actions hoping that it helps you to track down a potential rogue or problem in your network.
Regards,
-> Brian Hackley
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-14-2001 04:30 AM
тАО09-14-2001 04:30 AM
Re: syslog error: No buffer space
Thanks for the suggestions.