Something happened to my node and it is shown as "nosync" in the master interface.
This is what the master shows:
# pveca -l
CID----IPADDRESS----ROLE-STATE--------UPTIME---LOAD----MEM---ROOT---DATA
1 : 192.168.15.67 M S 21 days 02:12 4.10 40% 10% 10%
2 : 192.168.15.68 N S 4 days 15:42 1.27 77% 33% 33%
This is what the affected node shows:
# pveca -l
Use of uninitialized value in string eq at /usr/share/perl5/PVE/Cluster.pm line 184.
Use of uninitialized value in string eq at /usr/share/perl5/PVE/Cluster.pm line 184.
Use of uninitialized value in concatenation (.) or string at /usr/bin/pveca line 128.
local node '' not part of cluster
Line 184 of Cluster.pm is "if ($ni->{ip} ..." below:
my $found = 0;
foreach my $ni (@{$cinfo->{nodes}}) {
if ($ni->{ip} eq $localip) {
$cinfo->{local} = $ni;
$found = 1;
last;
}
}
Anyone has a clue what I need to fix?
This is what the master shows:
# pveca -l
CID----IPADDRESS----ROLE-STATE--------UPTIME---LOAD----MEM---ROOT---DATA
1 : 192.168.15.67 M S 21 days 02:12 4.10 40% 10% 10%
2 : 192.168.15.68 N S 4 days 15:42 1.27 77% 33% 33%
This is what the affected node shows:
# pveca -l
Use of uninitialized value in string eq at /usr/share/perl5/PVE/Cluster.pm line 184.
Use of uninitialized value in string eq at /usr/share/perl5/PVE/Cluster.pm line 184.
Use of uninitialized value in concatenation (.) or string at /usr/bin/pveca line 128.
local node '' not part of cluster
Line 184 of Cluster.pm is "if ($ni->{ip} ..." below:
my $found = 0;
foreach my $ni (@{$cinfo->{nodes}}) {
if ($ni->{ip} eq $localip) {
$cinfo->{local} = $ni;
$found = 1;
last;
}
}
Anyone has a clue what I need to fix?