Replication

mongodb - 副本集創建錯誤:仲裁檢查失敗,因為沒有足夠的投票節點響應

  • October 5, 2021

我正在配置一個 mongodb 副本集。從我目前的主節點,什麼時候rs.add('host1:27017'),它會產生這個錯誤

Quorum check failed because not enough voting nodes responded; required 2 but only the following 1 voting nodes responded; the following nodes did not respond affirmatively; failed with Server min and max wire version are incompatible (7,7) with client min wire version (6,6)

在我host1host2機器上,我已經添加replication了具有相同replSetNamebind_ip和暴露防火牆的選項。作為證明,通過命令行mongo --host host1我仍然可以連接到host1的 mongo 實例。該telnet命令還產生相同的成功連接。我不知道如何解決這個問題。

答案是 3 台機器都必須有相同的 4.0 版本

引用自:https://dba.stackexchange.com/questions/243269