- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- vgcreate failed
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
12-07-2000 07:11 AM
12-07-2000 07:11 AM
Vgcreate returns an error message: Could not create volume
group ... file too large.
What is going wrong?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2000 07:23 AM
12-07-2000 07:23 AM
Re: vgcreate failed
It could be as you were trying to create your volume group you did not extend your "max_pe" size. The default is 1016 @ 4mb per physical extent. You can extend it up to 65535 by using the "-e" option on your vgcreate.
I hope this helps.
Eddie
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2000 07:24 AM
12-07-2000 07:24 AM
Re: vgcreate failed
vgcreate -e (maximum number of physical extents) -l (maximum number of logical volumes) -p (aximum number of physical volumes) -s (size in megabytes of physical extent) /dev/vg## /dev/dsk/c#t#d#
check man vgcreate.
1 to 65535 Max PE
1 to 255 Max LV
1 to 255 Max PV
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2000 07:26 AM
12-07-2000 07:26 AM
Re: vgcreate failed
when times by 4 gives you 36 meg , default is 1016.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2000 07:35 AM
12-07-2000 07:35 AM
Re: vgcreate failed
the number of physical extents (to 8750 in my case). But even
if I override that with "-e 9000", the message "file too large"
is returned.
???
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2000 07:42 AM
12-07-2000 07:42 AM
Solutionhttp://us-support3.external.hp.com/cki/bin/doc.pl/sid=57dc7ab21c0b25cebe/screen=ckiDisplayDocument?docId=200000047771452
I had this problem when I tried to create a VG (when I was rebuilding a system from an ignite tape) on an 18GB drive. What I did to solve the problem was change the PE Size to 8 MB (the default is 4 MB). That solved the problem and let the vgcreate go through.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2000 07:44 AM
12-07-2000 07:44 AM
Re: vgcreate failed
From document #KBRC00000716:
Since the LVM data structures must fit into a single extent on the disk, the file too large error occurs when the extent size is smaller than the LVM data structures.
As disks continue to increase in size, there is not enough room in the header files to create a table large enough to track all the physical extents.
Reduce the size of the LVM data structure by reducing the maximum number of logical volumes the volume group can contain (max_lv), the maximum number of physical volumes the volume group can contain (max_pv), the size of the physical extents (pe_size), or any combination thereof.
vgcreate -l (number of max logical volumes) -p (number of max physical volumes) -s (size in megabytes of physical extent) /dev/vg## /dev/dsk/c#t#d#
By default, these parameters are set to:
max_lv 255
max_pv 16
pe_size 4MB
...regards!...
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2001 12:46 PM
04-05-2001 12:46 PM
Re: vgcreate failed
vgcreate -e 65535 -l 255 -p 255 -s 64 ...
this gives the error File to large. May need to up the extent size and lower the max-extents. Just a thought.
Jason Moorhead