- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- cluster lock volume group /dev/vg02 belongs to ano...
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-09-2001 11:46 AM
10-09-2001 11:46 AM
cluster lock volume group /dev/vg02 belongs to another cluster
want to change the node names . so I halted the cluster . changed the cluster configuration
file . removed the /etc/cmcluster/cmclconfig file .
Now when I try to do cmcheckconf . I am getting the above error message .
It seems some how it assumes all the volume groups are in the previous cluster .
any clue ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 11:54 AM
10-09-2001 11:54 AM
Re: cluster lock volume group /dev/vg02 belongs to another cluster
Did you change the host names of the nodes?
In anycase, try
vgchange -a n /dev/vg02
vgchange -c n /dev/vg02
Now run your cmcheckconf
-Regards
Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 11:58 AM
10-09-2001 11:58 AM
Re: cluster lock volume group /dev/vg02 belongs to another cluster
vgchange -a n /dev/vg02
vgchange -c n /dev/vg02
Then reconfigure your new cluster appropriately, i.e.
cmcheckconf -C
then assuming you get no errors:
cmapplyconf -C
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 12:02 PM
10-09-2001 12:02 PM
Re: cluster lock volume group /dev/vg02 belongs to another cluster
# cmdeleteconf -c
The cluster binary file will have the old node names and the of the cluster. You nmay have to do another cmquerycl to get everything back into order, and just to start off a new. Just as a side not, you should use cmdeleteconf to remove the cluster binary and not remove it.
Hope this helps
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 12:09 PM
10-09-2001 12:09 PM
Re: cluster lock volume group /dev/vg02 belongs to another cluster
Actually you may have to activate the cluster lock VG, so you should try
vgchange -a n /dev/vg02
vgchange -c n /dev/vg02
vgchange -a y /dev/vg02
-Regards
Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 12:40 PM
10-09-2001 12:40 PM
Re: cluster lock volume group /dev/vg02 belongs to another cluster
Like the others have already told, you will have to make the VG cluster unaware if you have deleted the previous cluster configuration. This you will have to do for all the cluster aware volume groups. Since you had halted the cluster, all the cluster aware volume groups would already be deactivated. But still you can deactivate them using
vgchange -a n /dev/vg_name
Now make the VG cluster un-aware
vgchange -c n /dev/vg_name
Now modify the new cluster config, add the Vg names, Lock disk / PV / Vg info and do a cmcheckconf. If that passes do a cmapplyconf to create the new cluster binaries.
Your procedure of deleting the Cluster config file was not correct. You should have done a cmdeleteconf to remove the old cluster infomation. Then done a cmcheckconf with the new conf file and then cmapplyconf.
Hope this helps.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 01:13 PM
10-09-2001 01:13 PM
Re: cluster lock volume group /dev/vg02 belongs to another cluster
Thanks again
Vaibhav