Operating System - HP-UX
1833461 Members
3196 Online
110052 Solutions
New Discussion

Re: 11.23 Kernel Parameters

 
SOLVED
Go to solution

11.23 Kernel Parameters

My database vendor is telling me to change the following kernel parameters (if they exist):
Max. num. of user processes.
Max. num. of system users.
Max. num. of semaphores.
Max. num. of per-process open files.
Max. num. of system wide files.
Max. num. of system processes.

I think the following are associated:
Max. num. of user processes (maxuprc)
Max. num. of per-process open files (maxfiles)
Max. num. of system processes (nproc)

Does anybody know what parameters are associated with:
Max. num. of system users.
Max. num. of semaphores.
Max. num. of system wide files.
3 REPLIES 3
Patrick Wallek
Honored Contributor

Re: 11.23 Kernel Parameters

There is no max number of users.

Semaphores -- check the sem* parameters
System wide open files -- nfile

melvyn burnard
Honored Contributor
Solution

Re: 11.23 Kernel Parameters

Off teh top of my head:

Max. num. of user processes -> maxuproc
Max. num. of system users -> maxusers
Max. num. of semaphores -> semmni
Max. num. of per-process open files -> maxfiles
Max. num. of system wide files -> nfile
Max. num. of system processes -> nproc

Note that as of HP-UX 11.23 maxusers is no longer used

My house is the bank's, my money the wife's, But my opinions belong to me, not HP!

Re: 11.23 Kernel Parameters

I thank you guys much for the responses!!!