- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Hitting "user limits" for IPC resources?
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-07-2008 05:26 PM
01-07-2008 05:26 PM
Hitting "user limits" for IPC resources?
ulimit -a
time(seconds) unlimited
file(blocks) unlimited
data(kbytes) 1048576
stack(kbytes) 131072
memory(kbytes) unlimited
coredump(blocks) 4194303
Thanks for all the help!!
Ty
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2008 07:51 PM
01-07-2008 07:51 PM
Re: Hitting "user limits" for IPC resources?
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2008 12:52 AM
01-08-2008 12:52 AM
Re: Hitting "user limits" for IPC resources?
shmmax shmmni shmseg
semmni semmns semmnu semmsl semume
msgmap msgmax msgmnb msgmni msgseg msgssz msgtql
Each should have a man page on 11.23.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2008 05:04 AM
01-08-2008 05:04 AM
Re: Hitting "user limits" for IPC resources?
We are running JD Edwards on HPUX 11.11, and it is getting some very generic "IPC related" errors like the one below.
1050 Mon Jan 7 13:42:41 2008 ipcpub.c2911
process table full for process 1050
The reason I say it may be IPC related is the "ipcpub" call that reported the error.
Even though the error is process table full, maxuprc and nproc limits are no where close to being hit. Along with that - shmmni, msgmni, semmni all have very low utilization (like I had mentioned). I was not sure if any of the ulimit setting had anything to do with IPC limits, so that cleared that up.. thanks!
I just don't have enough understanding of the other kernel parms to know a good plan on attack to see if the user or the user process is hitting any of those maxs. I have listed their values below to see if anyone has any input on adjustments.
msgmap 5122 - 5122
msgmax 32768 Y 32768
msgmnb 65536 Y 65536
msgmni 128 - 128
msgseg 20480 - 20480
msgssz 128 - 128
msgtql 5120 - 5120
sema 1 - 1
semaem 16384 - 16384
semmap 1026 - (SEMMNI+2)
semmni 1024 - 1024
semmns 2048 - 2048
semmnu 1024 - 1024
semmsl 2048 Y 2048
semume 512 - 512
semvmx 32767 - 32767
shmem 1 - 1
shmmax 0x40000000 Y 0X40000000
shmmni 1024 - 1024
shmseg 512 Y 512
Thanks for all the help guys.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2008 05:32 AM
01-08-2008 05:32 AM
Re: Hitting "user limits" for IPC resources?
Very useful. Although nproc seems to be OK, you probably measured it after the error message and the usage went away. You may need to monitor sar -v 1 continuously while the code starts until it fails.
Another possibility is that it uses a lot of threads (JavaJunk?) and you'll need to look at thread requirements for the JDE programs. Then compare with kernel parameters nkthread and max_thread_proc.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2008 05:41 AM
01-08-2008 05:41 AM
Re: Hitting "user limits" for IPC resources?
JDE is not java, but I will look at the thread information. Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2008 06:30 AM
01-08-2008 06:30 AM
Re: Hitting "user limits" for IPC resources?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2008 11:47 AM
01-08-2008 11:47 AM
Re: Hitting "user limits" for IPC resources?
Try the man pages: (11.31 below)
http://docs.hp.com/en/B2355-60130/msgmap.5.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2008 01:30 PM
01-08-2008 01:30 PM
Re: Hitting "user limits" for IPC resources?
Example: I googled msgmap and got:
http://www.docs.hp.com/en/B3921-90010/msgmap.5.html
Cheers!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2008 01:32 PM
01-08-2008 01:32 PM
Re: Hitting "user limits" for IPC resources?
Example: I googled msgmap and got:
http://www.docs.hp.com/en/B3921-90010/msgmap.5.html
Works surprisingly better than using the ITRC search.
Cheers!