- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Extending Physical Volume Group
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-10-2006 07:59 PM
07-10-2006 07:59 PM
Extending Physical Volume Group
I want to use these disk for extending another physical volume group on the same manner (one disk to be added to the PVG and the other disk to the mirror PVG).
could I have a procedure for this task?
Notice that i Have an Online JFS
regards
M.Mahgoub
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2006 08:33 PM
07-10-2006 08:33 PM
Re: Extending Physical Volume Group
easiest way is to use SAM.
Select the vg you want to extend and add the freed up disk. Repeat for the mirror.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2006 08:51 PM
07-10-2006 08:51 PM
Re: Extending Physical Volume Group
vgextend -g pvg-name /dev/vg** /dev/dsk/xxxx
and the same for the mirror pvg
regards
Andy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2006 08:57 PM
07-10-2006 08:57 PM
Re: Extending Physical Volume Group
Just use option '-g' for vgextend, so you can specified which disk go for the main PVG & other for the mirror PVG.
# vgextend -g PVGMAIN /dev/vgXX /dev/dsk/cXtYdZ
# vgextend -g PVGMIRROR /dev/vgXX /dev/dsk/cAtBdC
After that, use lvextend for extend the file system size under /dev/vgXX. Check with lvdisplay to make sure the extend will taken both disk (main & mirror).
Hope this information can help you.
Cheers,
AW
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2006 09:29 PM
07-10-2006 09:29 PM
Re: Extending Physical Volume Group
Now You are having 2 disks that You got from the deleted Volume group..
Let it be /dev/dsk/c2t6d0
and /dev/dsk/c2t6d1
Now U can add the dsik to The Existing Voume Group by..
For Example for Volume Group VG03
#vgextend /dev/vg03 /dev/dsk/c2t6d0 /dev/dsk/c2t6d1
<< Then You can Extend the Logical volume >>
#lvextend -L
#lvextend -m 1 lvol04 /dev/dsk/c2t6d1
Now one disk is added to your Logical volume & the other disk contains the Mirrored data of the same..
Surya.................
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2006 12:26 AM
07-11-2006 12:26 AM
Re: Extending Physical Volume Group
man lvmpvg for details on the file format.