- Community Home
- >
- Servers and Operating Systems
- >
- Operating System - HP-UX
- >
- Serviceguard
- >
- Cluster Error (Error: IP subnets don't match, inte...
-
- Forums
-
- Advancing Life & Work
- Advantage EX
- Alliances
- Around the Storage Block
- HPE Ezmeral: Uncut
- OEM Solutions
- Servers & Systems: The Right Compute
- Tech Insights
- The Cloud Experience Everywhere
- HPE Blog, Austria, Germany & Switzerland
- Blog HPE, France
- HPE Blog, Italy
- HPE Blog, Japan
- HPE Blog, Middle East
- HPE Blog, Latin America
- HPE Blog, Russia
- HPE Blog, Saudi Arabia
- HPE Blog, South Africa
- HPE Blog, UK & Ireland
-
Blogs
- Advancing Life & Work
- Advantage EX
- Alliances
- Around the Storage Block
- HPE Blog, Latin America
- HPE Blog, Middle East
- HPE Blog, Saudi Arabia
- HPE Blog, South Africa
- HPE Blog, UK & Ireland
- HPE Ezmeral: Uncut
- OEM Solutions
- Servers & Systems: The Right Compute
- Tech Insights
- The Cloud Experience Everywhere
-
Information
- Community
- Welcome
- Getting Started
- FAQ
- Ranking Overview
- Rules of Participation
- Tips and Tricks
- Resources
- Announcements
- Email us
- Feedback
- Information Libraries
- Integrated Systems
- Networking
- Servers
- Storage
- Other HPE Sites
- Support Center
- Aruba Airheads Community
- Enterprise.nxt
- HPE Dev Community
- Cloud28+ Community
- Marketplace
-
Forums
-
Blogs
-
Information
-
English
- 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
- Email to a Friend
- Report Inappropriate Content
10-22-2011 11:05 PM
10-22-2011 11:05 PM
Cluster Error (Error: IP subnets don't match, interface lan3 on node1)
Hi,
My company recently created new Vlans on the network and new subnet mask & gateway updated in the servers, But whenever i start cluster it throws below error then it started successfully.
Do i need to update any cluster configuration file
or
What is the way to resolve this issue.
Logs:==========
node2:/#cmrunnode -v node2
cmrunnode : Validating network configuration...
Gathering configuration information ..
Gathering Network Configuration ...... Done
Error: IP subnets don't match, interface lan3 on node1
Error: IP netmasks don't match, interface lan3 on node1
Error: IP subnets don't match, interface lan3 on node2
Error: IP netmasks don't match, interface lan3 on node2
cmrunnode: Failed to validate the network configuration as reported above but will try to start the nodes anyway.
cmrunnode : Network validation complete
cmrunnode : Waiting for cluster to form......
cmrunnode : Cluster successfully formed.
cmrunnode : Check the syslog files on all nodes in the cluster
cmrunnode : to verify that no warnings occurred during startup.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
10-23-2011 02:25 AM
10-23-2011 02:25 AM
Re: Cluster Error (Error: IP subnets don't match, interface lan3 on node1)
> Do i need to update any cluster configuration file
That's exactly what you'll have to do.
Use the "cmgetconf" command to convert the current binary-form cluster configuration file to text form. Then edit the network parameters to match the new situation. Verify the new configuration with "cmcheckconf", then apply it with "cmapplyconf".
The cmapplyconf command will automatically update the binary-form configuration in all the cluster nodes.
For more details and usage examples, run "man cmgetconf", "man cmcheckconf", "man cmapplyconf".
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
10-23-2011 11:29 PM
10-23-2011 11:29 PM
Re: Cluster Error (Error: IP subnets don't match, interface lan3 on node1)
Hello,
Use the "cmgetconf" command to convert the current binary-form cluster configuration file to text form
** My cluster file is under /etc/cmcluster ...........cmclconfig , How can i convert this file.
Then edit the network parameters to match the new situation
*Iam totally unaware about this editing option of cluster files.
Verify the new configuration with "cmcheckconf", then apply it with "cmapplyconf".
##Please provide the prodution environment docs to troubleshoot this issue.
#I hope i can do this changes online on HP-UX 11.11(v1)
##Today one of a package auto-run disable automatically , I hope this is a beginning of the problem under cluster.
Thanks a lot for your valuable input..........
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
10-24-2011 06:09 AM
10-24-2011 06:09 AM
Re: Cluster Error (Error: IP subnets don't match, interface lan3 on node1)
> Iam totally unaware about this editing option of cluster files.
I guess you have only edited the package control scripts (typically /etc/cmcluster/<packagename>/<packagename>.cntl) until now. These have a lot of settings, but they are not the only places you need to modify when changing netmasks within the cluster.
You should never edit the cmclconfig file directly: only through cmgetconf/cmapplyconf.
To get the cluster configuration in ASCII form to file (e.g. /tmp/cluster.conf), run:
cmgetconf /tmp/cluster.conf
Then edit the /tmp/cluster.conf file: modify any lines with keywords HEARTBEAT_IP or STATIONARY_IP to match the new network configuration.
You'll also need to get the package configuration file(s) to ASCII form for editing: for this, you'll need to know the names of your Serviceguard packages. You can view the list of packages with the "cmviewcl" command. For example, if you have two packages named "package1" and "package2", run:
cmgetconf -v -p package1 /tmp/package1.conf cmgetconf -v -p package2 /tmp/package2.conf
The package configuration files may include SUBNET declarations: if your netmask has changed, these will most likely need to be changed. Changing the SUBNETs will require the packages to be halted when you apply the changes, so you'll need to schedule some downtime.
The next step is to run the cmcheckconf command to check the new configuration:
cmcheckconf -v -C /tmp/cluster.conf
If the check indicates errors in the cluster configuration, fix them before proceeding.
If the check indicates conflicts with the package configuration(s), you may need to temporarily remove the package configuration from the cluster, so that you can apply first the new cluster configuration, and then the new package configurations. (This will only delete the package configuration inside the cmclconfig file: the package control scripts, filesystems and mountpoints will remain as-is.)
cmdeleteconf -v -p package1 cmdeleteconf -v -p package2
If there are no errors, it's time to apply the new cluster configuration:
cmapplyconf -v -C /tmp/cluster.conf
Then check and apply the new package configurations:
cmcheckconf -v -P /tmp/package1.conf cmapplyconf -v -P /tmp/package1.conf cmcheckconf -v -P /tmp/package2.conf cmapplyconf -v -P /tmp/package2.conf
After this, your cluster configuration should be updated to match your new subnet configurations.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
10-25-2011 12:14 AM
10-25-2011 12:14 AM
Re: Cluster Error (Error: IP subnets don't match, interface lan3 on node1)
Thanks a lot dear .......i will apply this configuration during weekend, I hope i can do this ONLINE as well , Kindly check enclosed cmscancl for your review and feedback........
Hewlett Packard Enterprise International
- Communities
- HPE Blogs and Forum
© Copyright 2021 Hewlett Packard Enterprise Development LP