- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Max disks in a 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
05-19-2003 05:46 AM
05-19-2003 05:46 AM
thx
RPM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 05:51 AM
05-19-2003 05:51 AM
Re: Max disks in a vg
First thing to look at is the pvcreate command and it's -p option, which defines the maximum number of physical volumes in the VG. Default is 16, and the max is 255.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 05:52 AM
05-19-2003 05:52 AM
Re: Max disks in a vg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 05:53 AM
05-19-2003 05:53 AM
Re: Max disks in a vg
Check man vgcreate.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 05:55 AM
05-19-2003 05:55 AM
Re: Max disks in a vg
So be sure to add the biggest disk and highest resonable Max Phys Vol) during the 'vgcreate' command (not the 'pvcreate' command as specified by Pete).
Share and Enjoy! Ian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 05:57 AM
05-19-2003 05:57 AM
Re: Max disks in a vg
You could ask EMC to bind these smaller LUN's into a larger metaluns which could get you out of recreating the VG. It's a bin file change though and that costs $$$
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 05:59 AM
05-19-2003 05:59 AM
Re: Max disks in a vg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 05:59 AM
05-19-2003 05:59 AM
Re: Max disks in a vg
When you issue the 'vgcreate' command you will need to specify the larger number of disks you intend to add to the volume group. The '-p max_pv' argument defines this value. If you fail to use this argument, your volume froup will be limited to 16 physical disk. The 'vgcreate' is easily done at command line following a 'pvcreate'.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 05:59 AM
05-19-2003 05:59 AM
Re: Max disks in a vg
# vgcreate vg_name -p max_pv ..other options ..
Also, if you want to add higher capacity disks in future, change the pe_size too, with -s option. It's not a big deal to add more disks in to a VG, the VG will acitvate if the quorum is present. But when you create LVs, I wouldn't add a large number of disks in a single LV since a failure of a single disk will cause the entire failure of that LV. You need to re-create(vgcfgrestore and newfs) and restore the data in that case.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 06:01 AM
05-19-2003 06:01 AM
SolutionDisk&Filesystem->VolumeGroups
Go to the Action Tab and select "Create" and you'll be prompted for ..
a) New VG Name
b) Select Disk
c) Modify Default VG Option
- Max PE
- Max LV
- MAX PV
- PE Size
In c) is where you enter your max PV.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 06:08 AM
05-19-2003 06:08 AM
Re: Max disks in a vg
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2003 02:47 AM
05-20-2003 02:47 AM
Re: Max disks in a vg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2003 03:30 AM
05-20-2003 03:30 AM
Re: Max disks in a vg
with a PE size of 8 the max number of PE's you can have is 146 - in order to utilize the maximum number of PE's possible you will need to have a PE size of 16 which will allow you to have 255 PE's.
I was working on a script and ran into this problem and had to call HP to get the answer. I should have just posted here instead :)