[SOLVED] Cluster join issue

AxelTwin

Well-Known Member
Oct 10, 2017
133
6
58
39
Hi everybody,

I tried to join a third node to my cluster today. The node is visible in the cluster but with a red cross.
I can ssh login to the new node from the cluster GUI but it keeps asking for password.

Can someone enlight me ?

Code:
root@proxmox-1 ~ # pvecm status
Cluster information
-------------------
Name:             overlaps
Config Version:   7
Transport:        knet
Secure auth:      on

Quorum information
------------------
Date:             Thu Mar 17 17:36:59 2022
Quorum provider:  corosync_votequorum
Nodes:            2
Node ID:          0x00000001
Ring ID:          1.1ee6
Quorate:          Yes

Votequorum information
----------------------
Expected votes:   3
Highest expected: 3
Total votes:      2
Quorum:           2
Flags:            Quorate

Membership information
----------------------
    Nodeid      Votes Name
0x00000001          1 172.16.1.1 (local)
0x00000003          1 172.16.1.3

Code:
root@proxmox-1 ~ # cat /etc/pve/corosync.conf
logging {
  debug: off
  to_syslog: yes
}

nodelist {
  node {
    name: hyperviser
    nodeid: 2
    quorum_votes: 1
    ring0_addr: 192.168.1.110
  }
  node {
    name: proxmox-1
    nodeid: 1
    quorum_votes: 1
    ring0_addr: 172.16.1.1
  }
  node {
    name: proxmox-3
    nodeid: 3
    quorum_votes: 1
    ring0_addr: 172.16.1.3
  }
}

quorum {
  provider: corosync_votequorum
}

totem {
  cluster_name: overlaps
  config_version: 7
  interface {
    linknumber: 0
  }
  ip_version: ipv4-6
  link_mode: passive
  secauth: on
  version: 2
}
 
Last edited:
ok, thanks for the hint.
I am trying to connect the third node which is a local one behind nat, to the cloud cluster.
I need to get all the vms back from this cloud cluster to the local node and then shutdown the cloud cluster
What would be the the easiest/fastest scenario ?
Each of the cluster nodes are also PBS servers, is there a way to just connect the local node to the PBS and restore vms backups ?
 
ok, found the solution.
I connected the pbs server to the local node's storage and restored from there.
Thanks !
 
yeah, backup and restore is the way to go in such a scenario! :)
 
  • Like
Reactions: AxelTwin