- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Service Guard adding a disk to shared 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
10-24-2001 12:06 PM
10-24-2001 12:06 PM
I need to add a disk to a shared volume group what do i need to do i have never done this.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2001 12:17 PM
10-24-2001 12:17 PM
Re: Service Guard adding a disk to shared volume group
Hope this helps.
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2001 12:19 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2001 12:22 PM
10-24-2001 12:22 PM
Re: Service Guard adding a disk to shared volume group
2. Sync the configuration on the secondary node(s). Create the map file on the active node and import it on the secondary node.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2001 12:22 PM
10-24-2001 12:22 PM
Re: Service Guard adding a disk to shared volume group
Its pretty straight forward actually,
On NodeA
pvcreate /dev/rdsk/cXtYdZ
vgextend /dev/vgshared /dev/dsk/cXtYdZ
vgexport -v -p -s -m /tmp/vgshared.map /dev/vgshared
copy the map file to node B
(rcp /tmp/vgshared.map nodeB:/tmp)
on Node B
ll /dev/vgshared/group
vgexport /dev/vgshared
mkdir /dev/vgshared
mknod /dev/vgshared/group c 0x??0000
(here ?? is the number you obtained from above ll command)
vgimport -v -s -m /tmp/vgshared.map /dev/vgshared
This is one of the easier ways. There are other ways too but this has worked for me.
-HTH
Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2001 12:29 PM
10-24-2001 12:29 PM
Re: Service Guard adding a disk to shared volume group
Take a look at the thread below.
http://us-support2.external.hp.com/cki/bin/doc.pl/sid=141690d81444034121/screen=ckiSearchResults?mode=id&searchString=UXSGLVKBAN00000002
Hope this helps.
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2001 12:41 PM
10-24-2001 12:41 PM
Re: Service Guard adding a disk to shared volume group
the procedure is similar
to the regular volumegroup extension, except that you
would need to preview-export
and import the vg configuration to the other nodes sharing the vg.
-R