I hope sopmeone can help?
I have two nodes in a cluster, both have 2 NICs. One WAN facing, the other LAN facing on their own local subnet 10.0.0.0/24. I can ping the other nodes on the local subnet no problems from the command line of each node.
Node 1 = 10.0.0.1
Node 2 = 10.0.0.2
In the GUI I can see both nodes and see a list of the running VMs, however, when I click on a VM or perhaps on the summary tab of another node, I get either a constantly spinning waiting icon or a "communication failure (0)" message.
Im thinking its corosync thats mis-configured in some way and I've included a copy of both corosync.conf files below:
Copies of my /etc/hosts file look like this:
and
I've also temporarily disabled the PVE firewall thinking that this may have some bearing but it seems not.
I have two nodes in a cluster, both have 2 NICs. One WAN facing, the other LAN facing on their own local subnet 10.0.0.0/24. I can ping the other nodes on the local subnet no problems from the command line of each node.
Node 1 = 10.0.0.1
Node 2 = 10.0.0.2
In the GUI I can see both nodes and see a list of the running VMs, however, when I click on a VM or perhaps on the summary tab of another node, I get either a constantly spinning waiting icon or a "communication failure (0)" message.
Im thinking its corosync thats mis-configured in some way and I've included a copy of both corosync.conf files below:
Code:
logging {
debug: off
to_syslog: yes
}
nodelist {
node {
name: node1
nodeid: 2
quorum_votes: 1
ring0_addr: 10.0.0.1
}
node {
name: node2
nodeid: 1
quorum_votes: 1
ring0_addr: 10.0.0.2
}
}
quorum {
provider: corosync_votequorum
}
totem {
cluster_name: cluster001
config_version: 2
interface {
bindnetaddr: 10.0.0.2
ringnumber: 0
}
ip_version: ipv4
secauth: on
version: 2
}
Code:
logging {
debug: off
to_syslog: yes
}
nodelist {
node {
name: node1
nodeid: 2
quorum_votes: 1
ring0_addr: 10.0.0.1
}
node {
name: node2
nodeid: 1
quorum_votes: 1
ring0_addr: 10.0.0.2
}
}
quorum {
provider: corosync_votequorum
}
totem {
cluster_name: cluster001
config_version: 2
interface {
bindnetaddr: 10.0.0.2
ringnumber: 0
}
ip_version: ipv4
secauth: on
version: 2
}
Copies of my /etc/hosts file look like this:
Code:
127.0.0.1 localhost.localdomain localhost
1.2.3.4 node1.mydomainname.com node1
10.0.0.1 node1.mydomainname.com node1 pvelocalhost
10.0.0.2 node2.mydomainname.com node2
and
Code:
127.0.0.1 localhost.localdomain localhost
1.2.3.5 node2.mydomainname.com node2
10.0.0.2 node2.mydomainname.com node2 pvelocalhost
10.0.0.1 node1.mydomainname.com node1
I've also temporarily disabled the PVE firewall thinking that this may have some bearing but it seems not.