使用 'Google Cloud Platform' Deployment Manager 设置 LAMP,是否可以使用 Cloud Shell 进行编辑?

Setup LAMP using 'Google Cloud Platform' Deployment Manager, is it possible to edit with Cloud Shell?

我使用 Deployment Manager 为 phpMyAdmin 创建了一个 LAMP 堆栈。是否可以从 Google 云 Shell 访问 VM 上的文件?如果是这样,我将如何导航到 Google Cloud Shell 中的文件?

当您启动 Cloud Shell 时,它会提供 Google Compute Engine 虚拟机 运行 Debian-based Linux 操作系统。云 Shell 个实例是在 per-user、per-session 的基础上配置的。当您的 Cloud Shell 会话处于活动状态时,该实例仍然存在;在一个小时的不活动之后,您的会话终止并且其 VM 被丢弃。有关使用配额的更多信息,请参阅限制指南 1

是的,您可以使用云 shell 命令访问您的 LAMP VM-Instance,如下所示: gcloud beta compute ssh --zone "us-central1-a" "vm-name" --project "project-id".

注意:(请根据您的命名约定替换区域、vm-name 和 project-id)。

请按照 link 2 获取有关 Cloud Shell 如何指南的更多信息。