1834454 Members
2909 Online
110067 Solutions
New Discussion

HPUX error code list.

 
SOLVED
Go to solution
YLTan
Frequent Advisor

HPUX error code list.


Does anyone know where can I find a list of all HPUX 11.11 error code? e.g. error code 233
tyl
3 REPLIES 3
Michael Tully
Honored Contributor
Solution

Re: HPUX error code list.

Your error means your system is out of buffer space. Perhaps your dbc_max_pct is set too low. 'glance' is a good place to look.
The standard error codes can be found here:

/usr/include/sys/errno.h
Anyone for a Mutiny ?
rick jones
Honored Contributor

Re: HPUX error code list.

And grep is very helpful when going through /usr/include/sys/errno.h

A 233 error from an accept() is likely not a lack of memory, but an indication that a remote client gave-up on a connection before the local server application could call accept().
there is no rest for the wicked yet the virtuous have no pillows
Bill Hassell
Honored Contributor

Re: HPUX error code list.

As mentioned, the error numbers (known as errno codes in Unix) are documented in the errno.h file and also in the man page for errno. However, attached is a script that will search both the errno.h file and the man page to give you details about errno values.


Bill Hassell, sysadmin