- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to increase shared memory
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
10-08-2002 07:04 AM
10-08-2002 07:04 AM
the max size of shared memory
segments on HP-UX 11.0 ? Getting errors from Oracle:
ORA-00604:(Unable to allocate 4048 bytes of shared memory). Not sure if this is a UX or Oracle setting that determines the size of shared memory.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2002 07:08 AM
10-08-2002 07:08 AM
Re: How to increase shared memory
Kernel parameters starting with 'shm' are related to shared memory. For more information on 11.0, see here:
http://docs.hp.com/hpux/onlinedocs/939/KCParms/KCparams.OverviewAll.html
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2002 07:08 AM
10-08-2002 07:08 AM
Re: How to increase shared memory
Its an HP-UX kernel parameter. 2 to be exact, you should bump all both;
shmmax (this is the main one - usually set to some large number in the hundreds of MB or even GB!)
shmmni (usually set to 1000+)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2002 07:11 AM
10-08-2002 07:11 AM
SolutionThe other thing that can caise problems is fragmentation of memory. There may simply not be a large enough area to allow a shared memory segment of a given size.
If both the OS and application are 64-bit then essentially all constraints are removed and you are really only limited by shmmax and shmseg.
THe other possible tunanle paramter to check is shmseg - the maximum number of shm segments that can be attached by a single process.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2002 07:18 AM
10-08-2002 07:18 AM
Re: How to increase shared memory
Is this oracle a 32-bit one?. If so, you are limited to a max size of 1.75 GB for total shared memory. Or depending on the fragmentation done between the Shared Memory Quadrants, you may be getting this error too even if it is less than 1.75. Do an ipcs -mob and calculate the total of all the shared segment sizes owned by 32 bit processes.
If yours is a 64 bit version, then it could be oracle issue itself. I remember my DBA adjusting a parameter sometime back (shared_pool_size)??
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2002 07:18 AM
10-08-2002 07:18 AM
Re: How to increase shared memory
http://www4.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000062945638
HTH
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2002 07:50 AM
10-08-2002 07:50 AM
Re: How to increase shared memory
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2002 07:58 AM
10-08-2002 07:58 AM
Re: How to increase shared memory
Manoj Srivastava