- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Seeing errors "HPUX Error: 233: No buffer space av...
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
тАО03-19-2007 05:29 AM
тАО03-19-2007 05:29 AM
Seeing errors "HPUX Error: 233: No buffer space available"
We're seeing messages like this in our Oracle listener.log. When I do some research on the error it points to a memory resource issue on the server but from what I can see the server is not having a memory resource issue. Has anyone seen this issue before?
Tim
19-MAR-2007 12:27:24 * 12560
TNS-12560: TNS:protocol adapter error
TNS-00530: Protocol adapter error
HPUX Error: 233: No buffer space available
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-19-2007 05:32 AM
тАО03-19-2007 05:32 AM
Re: Seeing errors "HPUX Error: 233: No buffer space available"
Read this message from metalink:
fact: Oracle Net
fact: TNS Listener
fact: HP 9000 Series HP-UX
symptom: Connections to database hang
symptom: Errors reported in the listener.log
symptom: TNS-12560: TNS:protocol adapter error
symptom: TNS-00530: Protocol adapter error
symptom: HPUX Error: 233: No buffer space available
cause: Problem is generally seen during high workload on machine.
The underlying problem of these errors is the operating system.
The HP UX system file /usr/include/sys/errno.h shows the following information
for the OS error 233:
# define ENOBUFS 233 /* No buffer space available */
ENOBUFS means there is no sufficient memory available and the system(kernel)
can not allocate any more.
Application will usually retry the operation when it detects this error from a
system call since it indicates there is a transient resource shortage.
It is the Operating system that refuses the resource request from the listener.
The virtual memory allocation routine of the OS will determine if a swap can be
made to disk of a real memory segment thereby allowing the listener access to
some more real memory
fix:
Free up memory on the machine
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-19-2007 05:34 AM
тАО03-19-2007 05:34 AM
Re: Seeing errors "HPUX Error: 233: No buffer space available"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-19-2007 05:39 AM
тАО03-19-2007 05:39 AM
Re: Seeing errors "HPUX Error: 233: No buffer space available"
You can cause this issue by allocating too much space to the system buffer cache.
The default is dbc_max_pct=50 and dbc_min_pct=5.
I generally lower this in 11.11 systems to max set under 10. This frees up a lot of memory which the Oracle SGA can then use.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-19-2007 02:06 PM
тАО03-19-2007 02:06 PM
Re: Seeing errors "HPUX Error: 233: No buffer space available"
One has to either reset the client application's expectations, or tune and improve the performance of the server application.