无法访问 gcloud 计算,数据库错误

问题描述 投票:0回答:1

尝试通过 iap-tunnel 连接到谷歌云计算实例时,我收到此错误消息:

ERROR: gcloud crashed (DatabaseError): file is not a database

我尝试使用 ubuntu CLI 进行连接

gcloud compute start-iap-tunnel "comfy-ui-lab-$INSTANCE_NAME" 8188 --project=$INSTANCE_PROJECT --zone=$INSTANCE_ZONE --local-host-port=localhost:8188

对于适当的变量,就像我过去几周所做的那样。然而,我没有收到密码提示,而是收到了错误消息。 跑步

gcloud info --run-diagnostics

产生同样的问题

gcloud
1个回答
0
投票

您的 gcloud 客户端 SQLLite 数据库可能已损坏。运行

gcloud init
应该可以解决这个问题。 如果没有,请先备份/清理 gcloud 配置目录,然后重新运行
gcloud init
:

cd ~/.config
mv gcloud gcloud_bak
gcloud init
© www.soinside.com 2019 - 2024. All rights reserved.