Operating System - HP-UX
1832986 Members
2514 Online
110048 Solutions
New Discussion

Re: rasing maxuprc value - dependencies ?

 
SOLVED
Go to solution
henrik bartels_1
Occasional Contributor

rasing maxuprc value - dependencies ?

Hello !

We have system (HP-UX 11.11) where the kernel parameter maxuprc is set to 320 and now we have problem with to many database connections and the system can't fork more processess for that user. I have countinously raised these parameter but I'am not aware of consequences of rasing this to much - are there any important dependencies that should be considered ?

regards/
Henrik

5 REPLIES 5
Thierry Poels_1
Honored Contributor

Re: rasing maxuprc value - dependencies ?

hi,

Database tend to have a rather high maxuprc (1024 is not abnormal) because one user (install user) will own all the processes.

Next to maxuprc, nproc should be set high enough (follow up with "sar -v").

regards,
Thierry.
All unix flavours are exactly the same . . . . . . . . . . for end users anyway.
Vijaya Kumar_3
Respected Contributor

Re: rasing maxuprc value - dependencies ?

Hi
I think it is not an issue. Try to run Oracle instances using different user accounts...

For example, orauser1 runs oradb1 database. orauser2 runs oradb2 database etc.

Thanks
Vijay
Known is a drop, unknown is ocean - visit me at http://vijay.theunixplace.com
T G Manikandan
Honored Contributor

Re: rasing maxuprc value - dependencies ?

Maxuprc should be less than the nproc value

maxuprc-->user limit no. of processes
nproc-->total number of processes on the system.

http://docs.hp.com/hpux/onlinedocs/939/KCParms/KCparam.MaxUprc.html
Sridhar Bhaskarla
Honored Contributor
Solution

Re: rasing maxuprc value - dependencies ?

Hi Henrik,

Other than that maxuprc should be less than nproc (SAM will not alow to configure it ofcourse), there isn't much I would worry about raising this parameter. If your application requires it, then you can. However, just keep track of what is happening on the system. A bad script or program can fork numourous child processes unnecessarily.

-Sri
You may be disappointed if you fail, but you are doomed if you don't try
henrik bartels_1
Occasional Contributor

Re: rasing maxuprc value - dependencies ?

thank you all/
Henrik