HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Addin physical volumes to a distributed volume gro...
Operating System - HP-UX
1832609
Members
2338
Online
110043
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- 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
06-13-2008 09:48 AM
06-13-2008 09:48 AM
Addin physical volumes to a distributed volume group in a serviceguard cluster
Hi there --
I need to increase the size of a distributed volume group so that I can also resize several logical volumes within it. The volume group is within a serviceguard cluster.
I have already run the pvcreate command on the virtual disks, and I now I need to add them to the volume group in question. My next step is to undistribute the volume group, and I am ready to do so within SAM. My questions are the following:
1. Do I need to halt the serviceguard package the volume group is a member of, or the entire serviceguard service, prior to undistribution or is that not necessary?
2. If the answer to question one is no, will undistributing the volume group make it unavailable for general use?
3. After the physical volumes are added, and the logical volumes within the target volume group are extended, how do I redistribute the volume group?
4. Is the above the correct procedure to use, or is there something that I am missing or should be doing instead?
Thanks.
I need to increase the size of a distributed volume group so that I can also resize several logical volumes within it. The volume group is within a serviceguard cluster.
I have already run the pvcreate command on the virtual disks, and I now I need to add them to the volume group in question. My next step is to undistribute the volume group, and I am ready to do so within SAM. My questions are the following:
1. Do I need to halt the serviceguard package the volume group is a member of, or the entire serviceguard service, prior to undistribution or is that not necessary?
2. If the answer to question one is no, will undistributing the volume group make it unavailable for general use?
3. After the physical volumes are added, and the logical volumes within the target volume group are extended, how do I redistribute the volume group?
4. Is the above the correct procedure to use, or is there something that I am missing or should be doing instead?
Thanks.
A Journey In The Quest Of Knowledge
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2008 11:51 AM
06-13-2008 11:51 AM
Re: Addin physical volumes to a distributed volume group in a serviceguard cluster
Hello Andrew,
What you mean with distributed VG ?
If you VG is activated in normal cluster behavior (exclusive cluster mode, not the shared as it on RAC clusters)then the task is very simple:
1. Add physical volumes to VG on the node, where the goup is acivated.
2. Export VG map file (with -p option)!!!.
3. Copy map file to other node(s).
4. Run ioscan to check new disk availability on each node(s).
5. Export VG without preview on inactive node.
6. Create new VG info - directory, group file, so on .
7. vgimport VG from map file, from the source node.
If you have PVG distributed policy for LV's don't forget to keep copy of /etc/lvmpvg file and after importing VG add new + old disk entries for that group.
Regards,
ivan
What you mean with distributed VG ?
If you VG is activated in normal cluster behavior (exclusive cluster mode, not the shared as it on RAC clusters)then the task is very simple:
1. Add physical volumes to VG on the node, where the goup is acivated.
2. Export VG map file (with -p option)!!!.
3. Copy map file to other node(s).
4. Run ioscan to check new disk availability on each node(s).
5. Export VG without preview on inactive node.
6. Create new VG info - directory, group file, so on .
7. vgimport VG from map file, from the source node.
If you have PVG distributed policy for LV's don't forget to keep copy of /etc/lvmpvg file and after importing VG add new + old disk entries for that group.
Regards,
ivan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2008 12:38 PM
06-13-2008 12:38 PM
Re: Addin physical volumes to a distributed volume group in a serviceguard cluster
Hi there --
Thanks for your reply. At the risk of sounding like a complete idiot. What would the command syntax be for steps 2,3,5,6, and 7?
Thanks.
Thanks for your reply. At the risk of sounding like a complete idiot. What would the command syntax be for steps 2,3,5,6, and 7?
Thanks.
A Journey In The Quest Of Knowledge
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2008 12:53 PM
06-13-2008 12:53 PM
Re: Addin physical volumes to a distributed volume group in a serviceguard cluster
Commands:
2.On node1:
# vgexport -p -s -m /tmp/vg_shared.map /dev/vg_shared
3.# scp /tmp/vg_shared.map node2:/tmp/
Going to node2:
5.
# ls /dev/vg_shared/group - note minor number (0x020000 for example)
# vgexport vg_shared
6.
# mkdir /dev/vg_shared
# mknod /dev/vg_shared/group c 64 0x020000 (same minor here)
7.
# vgimport -v -s -m /tmp/vg_shared.map /tmp/vg_shared
regards,
ivan
2.On node1:
# vgexport -p -s -m /tmp/vg_shared.map /dev/vg_shared
3.# scp /tmp/vg_shared.map node2:/tmp/
Going to node2:
5.
# ls /dev/vg_shared/group - note minor number (0x020000 for example)
# vgexport vg_shared
6.
# mkdir /dev/vg_shared
# mknod /dev/vg_shared/group c 64 0x020000 (same minor here)
7.
# vgimport -v -s -m /tmp/vg_shared.map /tmp/vg_shared
regards,
ivan
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP