- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: lvm / mcsg
Categories
Company
Local Language
Forums
Discussions
- Integrity Servers
- Server Clustering
- HPE NonStop Compute
- HPE Apollo Systems
- High Performance Computing
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Knowledge Base
Forums
Discussions
- Cloud Mentoring and Education
- Software - General
- HPE OneView
- HPE Ezmeral Software platform
- HPE OpsRamp Software
Knowledge Base
Discussions
Forums
Discussions
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
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-2003 03:32 AM
10-09-2003 03:32 AM
My cluster is up and running but the package is halted.
I try to activate a vg of this package on one node, but it failed.
I done :
#vgchange -c n /dev/vg02 --> OK
#vgchange -a y /dev/vg02 --> "vgchange: Activation mode requested for the volume group "/dev/vg02" conflicts with configured mode."
Other test :
#vgchange -c y /dev/vg02 --> OK
#vgchange -a e /dev/vg02 --> "vgchange: Volume group "/dev/vg02" belongs to a different Cluster. Activation failed"
same result on the other node.
Anyone can guide where to check this out?
Thanks for your help
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2003 03:52 AM
10-09-2003 03:52 AM
Re: lvm / mcsg
Best regards...
Dietmar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2003 05:18 AM
10-09-2003 05:18 AM
Re: lvm / mcsg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2003 05:53 AM
10-09-2003 05:53 AM
Re: lvm / mcsg
If that fails, this document has A fix for it, but you'd probably have to take the clsuter down to execute it: UMCSGKBRC00011516
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2003 07:26 AM
10-09-2003 07:26 AM
Re: lvm / mcsg
As others have stated, the most common occurrence of this that we have seen is NOT issuing the -c n command from the node that last had it active.
Best of luck.
Regards,
dl
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2003 07:59 PM
10-09-2003 07:59 PM
Re: lvm / mcsg
thanks for your replys, i tried the vgchange -c n on all nodes and -c y, the vgchange -a e gave the same result ....
same thing with -c n and -a y ...
The cluster name hasn't be changed.
:-(
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2003 08:40 PM
10-09-2003 08:40 PM
SolutionHere some background information... if you build a new cluster (with no existing configuration present, i.e. no /etc/cmcluster/cmclconfig file) then a fresh ClusterID is generated. This is a unique number, which is used to identify this new cluster in the future.
Now, when you mark a VG cluster aware (vgchange -c y) then this ClusterID is stamped into the LVMREC at the beginning of each disk in the VG.
You can check the ClusterID of a disk like this:
echo "0d8332?U" |/usr/bin/adb /dev/dsk/....
If the result is "0" then the disk is not marked cluster-aware at all.
Please check all your disk devices from all node with this command. Maybe there are still some disks with a foreign ClusterID present, caused this strange behaviour.
Please have a look at the result if this script on each cluster node (prints VGIDs and ClusterIDs) and post the results:
for i in /dev/dsk/*; do
echo$i:
echo "0d8208?U;0d8332?U" |/usr/bin/adb $i
done
Best regards...
Dietmar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2003 08:41 PM
10-09-2003 08:41 PM
Re: lvm / mcsg
You need to add the VG name as cluster aware VG in Cluster Asci file (/etc/cmcluster/cmcluster.ascii file.)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2003 02:57 AM
10-10-2003 02:57 AM
Re: lvm / mcsg
effectively, the clusterid is not the same between 2 package on this cluster ... I'll have to rebuild the cluster configuration (cmdeleteconf cmapplyconf) ... in fact, the clusterid comes from a srdf synchronization between 2 emc arrays.
problem is solved.
thanks a lot to all
Best regards