开启活动模式服务器后,保管库待机模式仍处于密封状态

时间:2019-01-03 04:41:45

标签: consul hashicorp-vault

我已遵循本教程:https://learn.hashicorp.com/vault/operations/ops-vault-ha-consul

,并使其相同,但使用不同的IP地址。但是当我尝试取消激活活动节点时,备用模式仍然处于密封状态。

我只是想从文档中得知,如果我们是活动的HA,则只需将其从1个节点上解封即可,其余的将自动激活。 CMIIW

这是来自using System; using UIKit; using Xamarin.Forms; using Xamarin.Forms.Platform.iOS; using HBIClientFacingApp; using HBIClientFacingApp.iOS; [assembly:ExportRenderer( typeof(CustomEditor), typeof(CustomEditorRenderer))] namespace YourNameSpace.iOS { public class CustomEditorRenderer: EditorRenderer { public ChatEntryRenderer() { UIKeyboard.Notifications.ObserveWillShow ((sender, args) => { if (Element != null) { Element.Margin = new Thickness(0,0,0, args.FrameEnd.Height); //push the entry up to keyboard height when keyboard is activated } }); UIKeyboard.Notifications.ObserveWillHide ((sender, args) => { if (Element != null) { Element.Margin = new Thickness(0); //set the margins to zero when keyboard is dismissed } }); } } } 做过的活动节点:

sealed

这来自ubuntu@ip-172-31-2-227:~$ vault status Key Value --- ----- Seal Type shamir Initialized true Sealed false Total Shares 5 Threshold 3 Version 1.0.0 Cluster Name vault-cluster-762abd6d Cluster ID ad4a8558-de0d-2b4b-6212-28ab1827fa88 HA Enabled true HA Cluster https://172.31.2.227:8201 HA Mode active ubuntu@ip-172-31-2-227:~$

standby node

阅读文档时我错过了什么吗?

谢谢

1 个答案:

答案 0 :(得分:0)

该指南中的

  

现在,您需要继续初始化和启封每个Vault实例。

强调each

您需要分别解封每个节点。这是设计使然,因此,如果无赖节点没有被授权加入群集,那么任何恶意节点都无法加入群集(并且您可以通过为节点提供解封密钥来授权该节点)。