- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- LVM question
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
07-20-2007 02:16 AM
07-20-2007 02:16 AM
when i did the vgcreate i get this.. can someone tell me what the problem is? i don't see the kernel parameter that it may be asking me to change...
root@host:/>vgcreate vg22 /dev/dsk/ch7t1d4
Warning: Max_PE_per_PV for the volume group (65535) too small for this PV (102399).
Using only 65535 PEs from this physical volume.
Increased the number of physical extents per physical volume to 65535.
vgcreate: Volume group "/dev/vg22" 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.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2007 02:19 AM
07-20-2007 02:19 AM
Re: LVM question
see man vgcreate.
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2007 02:23 AM
07-20-2007 02:23 AM
SolutionThe error is self-explanatory. The maximum number of EXTENTS is 65,535. You need to choose a *larger* value for the EXTENT SIZE to accomodate fully utilizing your disk.
See the manpages for 'vgcreate' and choose a larger value for '-s pe_size'.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2007 02:30 AM
07-20-2007 02:30 AM
Re: LVM question
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2007 02:41 AM
07-20-2007 02:41 AM
Re: LVM question
There are basically 2 errors.
First error is telling you that using default values of PE Size = 4 MB (as you have not specified any) and your disk being 400 GB :(400*1024)/4 = 102399 Physical extents would be needed to be configured, whereas LVM has a limitation of being able to use only 65535 PEs.
Next error imdicates that the VGRA (Volume Group Reserved Area) is small for the configuration you are trying to use - (again using default value of PE size = 4MB) expecting the VGRA to store more number of extents information than it can.
Thus you need to specify the parameters in such a way that all limits are stuck to.
Try using PE Size = 8 MB or 16 MB [ or as you would prefer ] using parameter -s 8
or -s 16 while doinf a vgcreate.
Regards,
Ninad