登录到 Google 云计算实例时安装时的数据存储在哪里?
Where is data stored when installed while logged on to a Google Cloud Compute instance?
我正在按照本教程开始使用 Google 云数据存储:https://cloud.google.com/datastore/docs/getstarted/start_java/。
至此,我的云帐户已全部设置为使用数据存储和端点所需的 API,用于我正在处理的项目。
我一直在按照设置说明进行操作,到目前为止,我已经创建了一个实例,我可以通过 ssh 来使用命令
gcloud compute ssh my-instance
教程中有这一行:
"When the instance is ready, log into the instance (for example, using gcloud compute ssh) and install Java and optionally Maven:"
所以我按照 sudo apt-get Java 和 Maven 的说明进行操作,但是我已经在我实际使用的计算机上安装了 Java 和 Maven,所以当使用这个 Compute 实例时(我认为是虚拟机?)数据存储在哪里?
从布局上看可能不是很明显,但在您链接到的教程中,您可以完成第 1 步或第 2 步来设置环境。
第 1 步说:
In this step we'll show you how to create a Google Compute Engine (GCE) instance where you can run this example. If you already have an environment where you can run the code, go to Step 2.
第 2 步说:
Note: If you are running this code on Google Compute Engine, you do not have to create new service account credentials because the default service account for your project is used when you create an instance with the datastore and userinfo-email scopes. Go to Step 3.
如果您已经拥有本地开发所需的一切(java 和 maven),您可以跳过第 1 步,直接获取服务帐户私钥。
无论您决定采用哪条路径,数据都将保存在 Google Datastore 中。唯一的问题是你 运行 来自 Compute Engine 实例 (VM) 或本地计算机的代码。
完成后不要忘记删除您的实例
gcloud compute instances delete $INSTANCE_NAME
我正在按照本教程开始使用 Google 云数据存储:https://cloud.google.com/datastore/docs/getstarted/start_java/。
至此,我的云帐户已全部设置为使用数据存储和端点所需的 API,用于我正在处理的项目。
我一直在按照设置说明进行操作,到目前为止,我已经创建了一个实例,我可以通过 ssh 来使用命令
gcloud compute ssh my-instance
教程中有这一行:
"When the instance is ready, log into the instance (for example, using gcloud compute ssh) and install Java and optionally Maven:"
所以我按照 sudo apt-get Java 和 Maven 的说明进行操作,但是我已经在我实际使用的计算机上安装了 Java 和 Maven,所以当使用这个 Compute 实例时(我认为是虚拟机?)数据存储在哪里?
从布局上看可能不是很明显,但在您链接到的教程中,您可以完成第 1 步或第 2 步来设置环境。
第 1 步说:
In this step we'll show you how to create a Google Compute Engine (GCE) instance where you can run this example. If you already have an environment where you can run the code, go to Step 2.
第 2 步说:
Note: If you are running this code on Google Compute Engine, you do not have to create new service account credentials because the default service account for your project is used when you create an instance with the datastore and userinfo-email scopes. Go to Step 3.
如果您已经拥有本地开发所需的一切(java 和 maven),您可以跳过第 1 步,直接获取服务帐户私钥。
无论您决定采用哪条路径,数据都将保存在 Google Datastore 中。唯一的问题是你 运行 来自 Compute Engine 实例 (VM) 或本地计算机的代码。
完成后不要忘记删除您的实例
gcloud compute instances delete $INSTANCE_NAME