- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Adding spare disk to 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
10-08-2012 09:31 AM
10-08-2012 09:31 AM
I added a spare disk to a VG on node 1 of a 2 node system using instructions in the sys admin guide: LVM p. 77. HPUX B.11.31. The spare is reported in vgdisplay. It's also recorded in lvmtab.
How do I get it to show on node 2? I deactivated on node1 then went to node2 and activated. It was not there. There are no more instructions in that section of the book. As usual, it must be hidden somewhere else with no link to it.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2012 09:44 AM
10-08-2012 09:44 AM
SolutionI believe you need to treat this exactly as would if you added any disk to a MC/SG VG.
On the Primary node
1) Run 'vgexport -p -v -s -m /tmp/vgname.map vgname'
2) Copy the /tmp/vgname.map file to the secondary node.
On the secondary node
3) remove the vg via 'vgexport vgname' (vgexport vg01)
4) Recreate the /dev/vgname directory and /dev/vgname/group file (mkdir & mknod respectively)
5) Import the VG via 'vgimport -v -s -m /tmp/vgname.map vgname'
Use the appropriate VG name (vg01, vgora, vgme, etc) in the commands above where I have 'vgname'.
Now your VG configuration should be the same on both nodes.
- Tags:
- vgexport
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2012 04:42 AM
10-09-2012 04:42 AM
Re: Adding spare disk to a VG.
Very good solution.