英文:
Getting [INFO] core: security barrier not initialized : When Deploying Vault using Helm chart
问题
"core: security barrier not initialized" 出现在尝试使用 Helm 图表部署 Vault 时,我还没有设置密封。如何设置密封
英文:
The error message "core: security barrier not initialized" is appearing when trying to deploy Vault using a Helm chart. I haven't setup the seal How to setup a seal
答案1
得分: 4
您收到此消息是因为您尚未初始化Vault。 当Vault正常运行时,您需要执行以下命令:vault operator init
。 如果您没有设置某种自动解封(听起来您没有这样做),则默认的密封类型是Shamir密封,Vault将返回5个解封密钥。 使用vault operator unseal
命令输入其中3个密钥,您将获得一个已解封的工作Vault实例。
英文:
You're getting this message because you haven't initialized Vault yet. The first thing you'll need to do when Vault is up and running is run the command: vault operator init
. If you didn't go about setting up some sort of auto unseal (which it sounds like you didn't), the default seal type is Shamir seal and Vault will give you back 5 unseal keys. Enter 3 of those keys in with the command vault operator unseal
and you'll have an unsealed, working Vault instance.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论