- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- how to align vg configuration between two servers ...
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
08-18-2003 07:56 AM
08-18-2003 07:56 AM
I would know what i have to do to align the configuration of this vg also on node 2.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 07:57 AM
08-18-2003 07:57 AM
Re: how to align vg configuration between two servers of a cluster
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 08:10 AM
08-18-2003 08:10 AM
Re: how to align vg configuration between two servers of a cluster
vgexport -v -s -p -m /tmp/clustervg.map clustervg
ll /dev/clustervg/group
ftp /tmp/clustervg.map to node2 /tmp/clustervg.map
On node2
deactivate clustervg if in use
vgexport -v clustervg
mkdir /dev/clustervg
mknod /dev/clustervg/group c 64 0x?????? (see ll from node1)
vgimport -v -s -m /tmp/clustervg.map clustervg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 08:30 AM
08-18-2003 08:30 AM
SolutionThere is also a certified document in the ITRC knowledge database:
UXSGLVKBAN00000002
http://www2.itrc.hp.com/service/cki/search.do?category=c0&mode=id&searchString=UXSGLVKBAN00000002&searchCrit=allwords&docType=Security&docType=Patch&docType=EngineerNotes&docType=BugReports&docType=Hardware&docType=ReferenceMaterials&docType=ThirdParty&search.x=30&search.y=12
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 01:05 PM
08-18-2003 01:05 PM
Re: how to align vg configuration between two servers of a cluster
shutdown the package that has this vg. Then activate the vg on one node.
vgchange -a e /dev/vgname
add the new pv to this vg and then do a vgexport and then deactivate the vg,
vgexport -p -s -m /tmp/vgname.map /dev/vgname
vgchange -a n /dev/vgname
rcp this map file to the /tmp on the 2nd node.
Now remove the vgname vg info from this node and then do a vgimport and then do a vgactivate,
vgexport /dev/vgname
mkdir /dev/vgname
mknod /dev/vgname/group c 64 0x0n0000
vgimport -s -m /tmp/vgname.map /dev/vgname
vgchange -a n /dev/vgname
vgchange -a e /dev/vgname
mount the filesystems and check.
Hope this helps.
Regds