- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: add disk and logical volume to VG owned by a p...
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
10-24-2002 02:17 AM
10-24-2002 02:17 AM
How can I add disk and logical volume to VG owned by package while pacakge is running. I can add it for primary node, but don't know how to add for adoptive node (while package is running)
Thank
BXH
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2002 02:22 AM
10-24-2002 02:22 AM
SolutionYou can add it without any pb.
On primary node:
vgextend/lvextend or lvcreate.
then:
vgexport -p -m mapfile vg
Cp on secondary node the mapfile
and then:
vgexport vg
mkdir /dev/vg
mknod /dev/vg/group c 64 0xXX0000
vgimport -m mapfile vg disk_liste.
The vgimport command don't activate the vg, so there is no risk to activate on both system.
That's all.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2002 02:22 AM
10-24-2002 02:22 AM
Re: add disk and logical volume to VG owned by a package
You just have to vgexport -p your volume on the primary node to get a map file, then vgexport it on the secondary node and reimport it using the mapfile.
Don't forget to adjust also the control files with the new lv if it needs to be mounted and unmounted.
Regards,
Jean-Louis.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2002 04:32 AM
10-24-2002 04:32 AM
Re: add disk and logical volume to VG owned by a package
This and other LVM tasks related to ServiceGuard packages are discussed in step-by-step thoroughness in technical documents.
There are two documents to walk through the processes you need to perform:
Document ID: UXSGLVKBAN00000002
TITLE: Adding A Disk To A Volume Group In A ServiceGuard Package
Document ID: UXSGLVKBAN00000008
TITLE: Adding Logical Volumes to a ServiceGuard volume group
These and over a hundred others are already available in the technical knowledge database to answer the most common questions about ServiceGuard
-s.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2002 05:34 AM
10-24-2002 05:34 AM
Re: add disk and logical volume to VG owned by a package
Great documents provided by Stephen.
As an add-on, those and the other MCSG documents can be accessed in the Technical Knowledge Base by using the keywords "uxsg" or "umcsg".
Regards
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2002 05:52 AM
10-24-2002 05:52 AM
Re: add disk and logical volume to VG owned by a package
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2002 09:10 PM
10-24-2002 09:10 PM
Re: add disk and logical volume to VG owned by a package
Thank again.
BXH