我有3個rabbitmq節點的羣集分佈在3臺不同的服務器上。第二個和第三個節點加入第一個節點並形成羣集。在測試故障轉移的過程中,我發現一旦主節點被終止,我無法使其重新加入羣集。該文檔沒有說明我必須在啓動後使用join_cluster或任何其他命令。我嘗試了join_cluster,但由於具有名稱的集羣與節點主機相同,因此它被拒絕。有沒有辦法做到這一點?Rabbitmq主節點重新加入羣集
cluster_status顯示以下(不從主節點):
Cluster status of node '[email protected]<secondary>' ...
[{nodes,[{disc,['[email protected]<primary>','[email protected]<secondary>',
'[email protected]<tertiary>']}]},
{running_nodes,['[email protected]<secondary>','[email protected]<tertiary>']},
{cluster_name,<<"[email protected]<primary>">>},
{partitions,[]}]
不適合我。如上面的消息所示。它不顯示主節點正在運行。 – sharman