gpt4 book ai didi

terraform - 错误锁定状态 : Error acquiring the state lock: state blob is already locked

转载 作者:行者123 更新时间:2023-12-04 12:09:50 25 4
gpt4 key购买 nike

当我尝试执行任何操作时出现此错误:Error locking state: Error acquiring the state lock: state blob is already locked如何列出当前拥有锁的人以及获得锁的时间?

最佳答案

取决于用于状态锁定的机制。
您可以在配置中看到这一点(例如在 terraform.tf 中,当用作文件名时..)

terraform {
required_version = "0.13.4"
backend "s3" {
bucket = "my.state.bucket.for.terraform"
key = "infra/my.tfstate"
region = "eu-central-1"
encrypt = true
dynamodb_table = "my.locking.table.in.dynamo"
}
}
如果使用 dynamobdb(在 aws 上),只需检查表。对于 PostgreSQL 或其他任何内容也是如此。
要修复它,您可以从客户端释放状态:
terraform force-unlock <ID_OF_LOCK_SHOWN_IN_ERROR>

关于terraform - 错误锁定状态 : Error acquiring the state lock: state blob is already locked,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64690427/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com