- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- VG on cluster
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-31-2003 02:03 AM
07-31-2003 02:03 AM
The two nodes havent each one two SCSI card with different card istance. So a disk with special file like c1t1d1 on node A have special file c4t1d1 on node B.
Thank You.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-31-2003 02:20 AM
07-31-2003 02:20 AM
Solutionfrom the primary node:
# ll /dev/
sign the minor number of the vg you want export (example 0x010000)
# vgexport -v -p -s -m /tmp/
# rcp -p /tmp/
from secondary node:
# mkdir /dev/
# mknod /dev/
# vgimport -v -s -m /tmp/
With the -s option you do not need to specify the disk belonging to the VG.
In the other way you can specify the disk with the different special file without -s option:
# vgimport -v -m /tmp/
Enrico.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-31-2003 02:24 AM
07-31-2003 02:24 AM
Re: VG on cluster
mkdir /dev/vgXX
mknod /dev/vgXX/group c 64 0xXX0000
vgimport -s -m /tmp/vgXX.map /dev/vgXX
vgchange -a s /dev/vgXX
I think that should do it.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-31-2003 02:28 AM
07-31-2003 02:28 AM
Re: VG on cluster
You don't have to worry that the device files are different on the 2 nodes.
On the primary, vgexport the VG:
# vgexport --p -s -m /tmp/vg01.map /dev/vg01
assuming vg01 is the VG you want to import on the adoptive node.
Copy the file /tmp/vg01.map from the primary node to /tmp on the adoptive node.
On the adoptive node:
# mkdir /dev/vg01
# mknod /dev/vg01/group c 64 0x010000
make sure the group minor number is the same as the primary node (ie, 0x010000 in my example).
vgimport -s -m /tmp/vg01.map /dev/vg01
Things should be fine.
Cheers!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-31-2003 02:28 AM
07-31-2003 02:28 AM
Re: VG on cluster
I forgot a piece of command:
# vgimport -v -s -m /tmp/
or
# vgimport -v -m /tmp/
Enrico.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-31-2003 02:30 AM
07-31-2003 02:30 AM
Re: VG on cluster
# vgexport -v -p -s -m /tmp/
Enrico.