- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Creating PVGs
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
03-01-2005 10:17 PM
03-01-2005 10:17 PM
Creating PVGs
I am creating a few PVGs on a new Volume Group
i) vgcreate -p 64 -s 8 -e 10000 -g pvg0901 /dev/vg09 /dev/dsk/cxxxxxx
ii) vgextend -g pvg09P02 /dev/v09 /dev/dsk/cxxxxx
Query: Please advise whether the above mentioned steps are applicable?
I would want to create a Logical Volume on vg09, with the -D y option
lvcreate -D y -r N -s g -L
Query: Will extent striping be performed automatically on all the PVs in PVG pvg0901 then if no space available will then extent striping on the PVs in PVG pvg0902? I presume this should be the case.
Thanks/cliff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2005 10:36 PM
03-01-2005 10:36 PM
Re: Creating PVGs
Use pvcreate to "initialize" a physical volume for use in a volumegroup.
Use vgcreate for creating a NEW volumegroup.
Use vgextend for adding a physical volume to an EXISTING volumegroup.
I am not sure I understand the last query but, a locical volume can NEVER spawn across volumegroupsbut, (if using the -D option) spawn across all avialable physical volumes in a group.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2005 10:55 PM
03-01-2005 10:55 PM
Re: Creating PVGs
What you are doing is absolutely right only. Onlything is that you should target paths of all devices in your first command on which you want to create pvg0901.
With -D option you are also specifying -s g that means two copies of a Physical extent can not share the same PVG. Also -D options means one PE of each Physical Volume Group will be allocated once & 2nd PE will be allocated to 2nd PVG. For doing this you must have more than one PVG in your Physical Volume Group.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2005 12:03 AM
03-02-2005 12:03 AM
Re: Creating PVGs
You can create the VGs as normal, then edit the /etc/lvmpvg file and tailor your PVGs as you like them (see 'man /etc/lvmpvg'). This avoids the confusing command lines with the vgcreate.
Keith
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2005 12:40 AM
03-02-2005 12:40 AM
Re: Creating PVGs
You're on the right track for creating the PVG.
I think the striping will occur only across a single PVG. It will not go automatically to the next one.