GCP:云 Shell:gcloud sql 实例创建:returns HTTPError 503
GCP: Cloud Shell: gcloud sql instances create: returns HTTPError 503
我一直在尝试使用来自云 Shell 的以下 INPUT 命令在 Google 云平台上创建一个新的 SQL 实例,但我不断返回相同的错误。有人可以指示我检查连接状态或我的帐户吗?
输入:
~$ gcloud sql instances create NAME-sql --assign-ip --tier D1 --region asia-northeast1 --gce-zone asia-northeast1-c
输出:
ERROR: (gcloud.sql.instances.create) HTTPError 503: Service temporarily unavailable. This is most likely a transient error. Please retry.
我不是要解决这个错误,而是想知道为什么我会得到 503 以及我可以做些什么来纠正这个不可用。
其他命令如
gcloud sql instance list
工作正常...
我能够从 Web GUI 界面创建 sql 实例。只是云命令行不起作用。
根据 RFC 2616,HTTP 503 表示:
The server is currently unable to handle the request due to a temporary
overloading or maintenance of the server. The implication is that this is
a temporary condition which will be alleviated after some delay.
如果您稍等片刻再试,应该可以。
我一直在尝试使用来自云 Shell 的以下 INPUT 命令在 Google 云平台上创建一个新的 SQL 实例,但我不断返回相同的错误。有人可以指示我检查连接状态或我的帐户吗?
输入:
~$ gcloud sql instances create NAME-sql --assign-ip --tier D1 --region asia-northeast1 --gce-zone asia-northeast1-c
输出:
ERROR: (gcloud.sql.instances.create) HTTPError 503: Service temporarily unavailable. This is most likely a transient error. Please retry.
我不是要解决这个错误,而是想知道为什么我会得到 503 以及我可以做些什么来纠正这个不可用。
其他命令如
gcloud sql instance list
工作正常... 我能够从 Web GUI 界面创建 sql 实例。只是云命令行不起作用。
根据 RFC 2616,HTTP 503 表示:
The server is currently unable to handle the request due to a temporary overloading or maintenance of the server. The implication is that this is a temporary condition which will be alleviated after some delay.
如果您稍等片刻再试,应该可以。