- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: NGROUPS_MAX
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
09-26-2002 08:21 PM
09-26-2002 08:21 PM
NGROUPS_MAX
Thanks, Gillian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2002 12:49 AM
09-27-2002 12:49 AM
Re: NGROUPS_MAX
Up to today you cannot change it. see man page
They are constants
limits(5) limits(5)
NAME
limits - implementation-specific constants
SYNOPSIS
#include
DESCRIPTION
The following symbols are defined in
throughout the descriptive text of this manual. The column headed
HP-UX Value lists the values that application writers should assume
for portability across all HP-UX systems.
Steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2002 01:26 AM
09-27-2002 01:26 AM
Re: NGROUPS_MAX
You can't change the NGROUP_MAX value it's fixed to 20 .
look at the URL
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xb4a83fa720f3d5118ff40090279cd0f9,00.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2002 01:27 AM
09-27-2002 01:27 AM
Re: NGROUPS_MAX
as allready said, have a look to the manpage for limits. The maximum number of groups has a value of 20 and should *not* be increased.
Allways stay on the bright side of life!
Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2002 02:48 PM
09-29-2002 02:48 PM
Re: NGROUPS_MAX
So...my next question...why cant it be done. What is affected?
thanks, Gillian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2002 06:39 PM
09-29-2002 06:39 PM
Re: NGROUPS_MAX
If you are ignore this, change the value and are lucky, the change will have no effect. If you are unlucky, and recompile some but not all of the things affected by this define, you may find overflowed buffers and/or use of uninitialized data in various applications. You really don't want to do this.
Let's take a step back and ask how you are using groups. Maybe there's an alternate way to get equivalent functionality without using a large number of groups. For example, access control lists, sudo, etc. may be helpful.