如何为 google 云实例设置变量名称

how to set variable name for google cloud instance

PROB_INSTANCE_NAME=INSTANCE_NAME

不工作

C:\Users\HP\AppData\Local\Google\Cloud SDK>PROB_INSTANCE_NAME=lamp-1-vm 'PROB_INSTANCE_NAME' is not recognized as an internal or external command, operable program or batch file.

C:\Users\HP\AppData\Local\Google\Cloud SDK>set PROB_INSTANCE_NAME=lamp-1-vm

C:\Users\HP\AppData\Local\Google\Cloud SDK>gcloud compute instances stop "$PROB_INSTANCE_NAME" ERROR: (gcloud.compute.instances.stop) HTTPError 400: Invalid value '$PROB_INSTANCE_NAME'. Values must match the following regular expression: 'a-z?'

我正在桌面上使用 google gcloud 工具。

正在尝试通过克隆根磁盘来安装 Linux 来宾环境。

我不确定您使用的是 Linux 还是 Windows,看您的命令看起来像是在使用 Windows。如果您使用 Windows,正确的命令是:

1) 查看您是否使用了正确的用户和项目

gcloud status

2) 如果您没有使用正确的用户帐户或项目,您可以通过执行来配置这些设置。

gcloud init

3) 将您的实例设置为变量

set PROB_INSTANCE_NAME=lamp-1-vm

4) 使用变量和区域执行停止命令

gcloud compute instances stop %PROB_INSTANCE_NAME% --zone zone_of_your_instance