- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Error creating VG
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
06-19-2003 06:10 AM
06-19-2003 06:10 AM
vgcreate: Volume group "/dev/vgid2" could not be created: VGRA for the disk is too big for the specified parameters. Increase the extent size or decrease max_PVs/max_LVs and try again. What parameter I need to increase in kernel??
Thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2003 06:12 AM
06-19-2003 06:12 AM
Re: Error creating VG
if you don't specify, you use a PE of 4 M
you may try with a PE size of 16M
see "man vgcreate" for the details.
HTH,
Massimo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2003 06:14 AM
06-19-2003 06:14 AM
Re: Error creating VG
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2003 06:15 AM
06-19-2003 06:15 AM
Re: Error creating VG
There is no kernel parameter to change. As the message indictes you need to modify the 'max_pe', 'pe_size', 'max_pv' and/or 'max_lv' to create a smaller LVM header which will fit in one physical extent.
The most likely parameter to change is the 'pe_size'. Enlarge it. See the man pages for 'vgcreate' for more details.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2003 09:13 AM
06-19-2003 09:13 AM
SolutionHowever, if the size of any physical volume exceeds 1016 times the pe_size, the default value for max_pe is adjusted automatically to match the physical volume size. The maximum number of physical extents can be a value in the range 1 to 65535.
This automatic procedure does not work, if you manually set the pe_size, e.g.:
# vgcreate -s 8 vgXY /dev/dsk/cCtTdD
In this example the vgcreate only works with disks smaller or equal than 8128 MB (1016 times 8MB).
If you want to use larger disks you have also to apply the max_pe value, e.g. for a 64GB disk:
# vgcreate -s 8 -e 8192 vgXY /dev/dsk/cCtTdD
NOTE: Plan these values carefully, thinking of the largest disk you want to use in the future. You cannot change pe_size and max_pe, resp., for an existing volume group.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2003 01:12 PM
06-19-2003 01:12 PM
Re: Error creating VG
Intresting what size of your disk?
No it's not kernel, it's VG creation parms.
You must change the PE size when you
create PE (make it bigger 16-32 depend)
You can also try to use SAM and see what
size he will choose.
Caesar