- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- what does this mean... hpux error 12: not enough ...
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
01-02-2004 01:24 AM
01-02-2004 01:24 AM
what does this mean... hpux error 12: not enough space?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2004 01:29 AM
01-02-2004 01:29 AM
Re: what does this mean... hpux error 12: not enough space?
Could run the command
# swapinfo -tam
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2004 01:29 AM
01-02-2004 01:29 AM
Re: what does this mean... hpux error 12: not enough space?
The original definition is as below.
> grep 12 /usr/include/sys/errno.h
#define ENOMEM 12 /* Not enough core */
These days it could be one of many things - often it is seen when trying to insert a message into a queue which is already full.
In what context are you seeing this message - what application etc?
-- Graham
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2004 01:35 AM
01-02-2004 01:35 AM
Re: what does this mean... hpux error 12: not enough space?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2004 01:39 AM
01-02-2004 01:39 AM
Re: what does this mean... hpux error 12: not enough space?
Do you have metalink?
Search for "hpux error 12: not enough space" and you'll get plenty of pointers, most of which are to do with increasing kernel parameters for shared memory and message queues.
If you don't have metalink, search this forum for "oracle kernel parameters".
-- Graham
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2004 03:32 AM
01-02-2004 03:32 AM
Re: what does this mean... hpux error 12: not enough space?
Find out if it's a new instance being started on this box.
Talk to you DBA (or just go out and check the ~init.ora files and run ipcs -a) and see just what is running (instances) and what each has set up for SGA. Add it all up and see what kernel parms are set to for shared memory, semaphores & msg queues.
Are the DBA's asking for more than the kernel is set to handle - then adjust the kernel....
BUT do you have the system resources to increase these values???
So a little communication between the "I want" and the "What I have to give" may need to take place.
Rgrds,
Rita
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2004 06:34 AM
01-02-2004 06:34 AM
Re: what does this mean... hpux error 12: not enough space?
/usr/include/sys/errno.h
2. man errno
EDOM 33 /* Math arg out of domain of func */
ERANGE 34 /* Math result not representable */
EPERM 1 /* Not super-user */
ENOENT 2 /* No such file or directory */
ESRCH 3 /* No such process */
EINTR 4 /* interrupted system call */
EIO 5 /* I/O error */
ENXIO 6 /* No such device or address */
E2BIG 7 /* Arg list too long */
ENOEXEC 8 /* Exec format error */
EBADF 9 /* Bad file number */
ECHILD 10 /* No children */
EAGAIN 11 /* No more processes */
ENOMEM 12 /* Not enough core */ Check maxdsiz; ulimit -a
EACCES 13 /* Permission denied */
EFAULT 14 /* Bad address */
3. In this case, it could be about three things:
a. Your ulimit -a is too small (memory)
b. Your maxdsiz is too small.
c. You are out of swap space. (if swap is full, you can't allocate any more memory).
d. You have a memory leak fillin gup your memory.
Examine all of these and make appropriate changes.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2004 06:53 AM
01-02-2004 06:53 AM
Re: what does this mean... hpux error 12: not enough space?
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2004 08:21 AM
01-05-2004 08:21 AM
Re: what does this mean... hpux error 12: not enough space?
Yeah its a shared memory resource issue. Try increasing the kernel's shared memory parameters. I cut and pasted a few.
Check ipcs -mob for allocated memory with no attached processes. Remove these with ipcrm -m # if any or just reboot the box to clean things up.
Reduce the instances init.ora file shared pool and/or buffer size values until the instance fits.
Some kernel parms to look at:
maxdsiz 800000000 Max Data Segment Size For 32-bit Processes (Bytes)
maxdsiz_64bit 1073741824 Max Data Segment Size For 64-bit Processes (Bytes)
maxfiles 2048 Soft File Limit Per Process
maxfiles_lim 2048 Hard File Limit Per Process
maxssiz 64000000 Max Stack Segment Size For 32-bit Processes (Bytes)
maxssiz_64bit 64000000 Max Stack Segment Size For 64-bit Processes (Bytes)
maxtsiz 67108864 Max Text Segment Size For 32-bit Processes (Bytes)
maxtsiz_64bit 1073741824 Max Text Segment Size For 64-bit Processes (Bytes)
Best wishes,
Rick
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2004 11:57 AM
01-05-2004 11:57 AM
Re: what does this mean... hpux error 12: not enough space?
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=133543
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=147321
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2004 12:12 PM
01-05-2004 12:12 PM
Re: what does this mean... hpux error 12: not enough space?
regards
mB