我无法在lubuntu上运行gcloud命令

时间:2019-12-20 09:51:25

标签: gcloud

我在lubuntu-32bit系统上安装了gcloud SDK,但是在运行gcloud时会给出错误提示。

错误

ERROR: gcloud crashed (OperationalError): database is locked

If you would like to report this issue, please run the following command:
  gcloud feedback

To check gcloud for common problems, please run the following command:
  gcloud info --run-diagnostics

重新安装,但无法确定。

1 个答案:

答案 0 :(得分:0)

该错误表明某事使gcloud的数据库保持打开状态。这可能是由多种原因引起的,其中一些可能性和建议是:

  • 请确保您没有并行运行多个“ gcloud”命令,因为当前不支持此命令,并且已经为此here打开了功能请求。

  • 避免安装Cloud SDK或将凭据存储在NFS上。如果有,请将Cloud SDK安装在本地目录中,或者通过将环​​境变量CLOUDSDK_CONFIG设置为本地磁盘位置将凭据存储在本地磁盘中,例如,如果您使用的是bash:< / p>

    export CLOUDSDK_CONFIG=/some/local/path/.gcloudconfig

  • 最后,通过运行gcloud components update再次检查您是否正在使用最新版本的Cloud SDK(尽管我假设您正在使用)。另外,您可以运行gcloud components reinstall尝试修复损坏的Cloud SDK 安装,过去曾帮助过其他人。