- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: vgcreate returns "File too large" error
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
11-22-2002 12:39 PM
11-22-2002 12:39 PM
vgcreate returns "File too large" error
vgcreate returns "File too large" error
What's the max_pe for this size disk? and why am I getting the above error.
Thanks
Willie
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2002 12:42 PM
11-22-2002 12:42 PM
Re: vgcreate returns "File too large" error
What command line are you using for your 'vgcreate'?
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2002 12:52 PM
11-22-2002 12:52 PM
Re: vgcreate returns "File too large" error
One or more of your arguments to 'vgcreate' cause the creation of LVM header information that can't be stored in one physical extent on the disk. Decrease your 'max_pv', 'max_lv' and/or increase your 'pe_size'. See the man pages for 'vgcreate' for more information.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2002 12:52 PM
11-22-2002 12:52 PM
Re: vgcreate returns "File too large" error
Alternatively, you can adjust the pe_size greater than the 4 MB default. If you do this, the size must be a power of 2 (i.e. 8, 16, 32, 64, etc).
HTH
Marty
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2002 12:55 PM
11-22-2002 12:55 PM
Re: vgcreate returns "File too large" error
Check out these documents for more information on this issue:
TKB document KBRC00000716
http://www2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000065011234
TKB document KBRC00009036
http://www2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000062909773
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2002 01:15 PM
11-23-2002 01:15 PM
Re: vgcreate returns "File too large" error
all the PE/LE information must fit into one PE's size, and 4MB is too small for your PVs...
So use "vgcreate" with some of the (not so optional any more) options:
-s 8 # or 16 or 32 or 64...256
-l 30 # do you really need 255 LVs?
-p 4 # do you really need 16 PVs in that VG?
-e 20480 # i.e. 160GB max, needed for substitutes in the future
Your values may vary, of course, but IMHO *all* the defaults are severly wrong (16PVs max, 4MB PE size, 255 LVs max, 2500 PEs max, and such, maybe that was reasonable many years back, when HP got LVM from OSF/IBM).
FWIW,
Wodisch