您可以使用以下命令查詢 mysql 實例:快速查詢所有實例:gcloud sql instances list詳細查詢特定實例信息:gcloud sql instances describe [instance_name]
如何查詢 MySQL 實例
快速查詢:
使用以下命令查詢所有 MySQL 實例:
gcloud sql instances list
登錄后復制
詳細查詢:
要查詢特定 MySQL 實例的詳細信息,請使用以下命令:
gcloud sql instances describe [INSTANCE_NAME]
登錄后復制
查詢輸出:
describe 命令將輸出以下詳細信息:
名稱
數據庫版本
機器類型
存儲大小
IP 地址
當前狀態
區域
創建時間
示例:
查詢名為 my-instance 的 MySQL 實例的詳細信息:
gcloud sql instances describe my-instance
登錄后復制
輸出示例:
ID: my-instance Name: my-instance Database version: MYSQL_5_7 Instance type: db-n1-standard-1 Region: us-central1 Zone: us-central1-a IP address: 127.0.0.1 Port: 3306 Current operation: Name: backup-operation-123456789 Started: 2020-05-05 12:00:00 UTC Ended: 2020-05-05 13:00:00 UTC Status: DONE Errors: [] Warnings: [] Enqueued: False User: [email protected] Create time: 2020-04-04 10:00:00 UTC
登錄后復制