- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: max num of system wide files
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
04-07-2005 07:43 AM
04-07-2005 07:43 AM
We got a documentation from our application s/w vendor which mentioned certain kernel parameters and their respective values.
However they did not give the actual parameter name...just a description:
1.Max num of user processes
2. Max num of system users
3. Max num of semaphores
4. Max num of per-process open files
5. Max num of system wide files
6. Max num of system processes.
I have managed to figure most of them
1. maxuprc
2. maxusers
3. semmns
4. maxfiles OR maxfiles_lim
5. nfile?
6. nproc
I just wanted some confirmation from you all that this seems ok?
thanks,
ap.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2005 07:53 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2005 07:59 AM
04-07-2005 07:59 AM
Re: max num of system wide files
http://docs.hp.com/en/939/KCParms/KCparams.OverviewAll.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2005 08:01 AM
04-07-2005 08:01 AM
Re: max num of system wide files
tunables have a manpage explaining what it does
and min/max/failsafe/default values.
- Biswajit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2005 08:05 AM
04-07-2005 08:05 AM
Re: max num of system wide files
http://docs.hp.com/en/TKP-90202/index.html
nfile is typically a formula utilizing Nproc (defined value of nproc), MaxUsers (defined value of maxusers)and npty. Since you are changing nproc and maxusers already - see if the cumulative affect has brought nfile up to needed value already.
Hope this helps,
B
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2005 08:20 AM
04-07-2005 08:20 AM
Re: max num of system wide files
i am on HP 11.00 ... but will go through the docsmt and let you know what happens.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2005 06:47 PM
04-07-2005 06:47 PM
Re: max num of system wide files
Apart from these there are some other application related parameters for instance. dbc_max_pct. So take a close look at all before proceeding.The value os many parameters are normally decided based on your application.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2005 05:55 AM
04-11-2005 05:55 AM
Re: max num of system wide files
I came across in other manuals that I need to increase MSGMNI from 69 (currently set) to 1068.
What does MSGMNI do now?
I need a more regular english explanation...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2005 06:02 AM
04-11-2005 06:02 AM
Re: max num of system wide files
Message queues, semaphores, and shared memory comprise the components of UNIX IPCS (InterProcess Communication System).
A good method to know what each of these do is Sam ->Kernel Configuration -> Configurable Paramters. Select the desired tunables and press
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2005 06:06 AM
04-11-2005 06:06 AM
Re: max num of system wide files
"msgmni defines the maximum number of message queue identifiers allowed on the system at any given time. One message queue identifier is needed for each message queue created on the system. "
"Overview of Message Queue Operation
Messages
Messages are small collections of data (400 bytes, for example) that can be passed between cooperating programs through a message queue. Messages within a queue can be of different types, and any process with proper permissions can receive the messages. A receiving process can retrieve the first message, the first message of a given
type, or the first message of a group of types. See the HP-UX Reference entry msgop(2) for more information.
Message Queues
Message queues are implemented as linked lists of data stored in shared memory. The message queue itself contains a series of data structures, one for each message, each of which identifies the address, type, and size of the message plus a pointer to the next message in the queue. "
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2005 03:21 AM
04-26-2005 03:21 AM
Re: max num of system wide files
I need to change nproc from 2048 to 2804. I see that nsysmap needs some change also since it has a formula of:
( ( NPROC) > 800?2*(NPROC) : 800)
which I guess means that if NPROC is greater than 800 then nsysmap should be 2*nproc = 2*2804=5608 in my case.
Now is the interesting part: I don't see nsysmap in SAM->Kernel Config->Config Prmeters->
So i guess i could change all the parameters from command line...then reboot from sam?
thanks for your time and help.
regards,
ap
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2005 03:27 AM
04-26-2005 03:27 AM
Re: max num of system wide files
It should always be there. All the kernel parameters are listed in kernel config through SAM also.
Although there should be no problem doing it through command line.
HTH,
Devender