mysql实例怎么查询-mysql教程

如何查询 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: myuser@example.com
Create time: 2020-04-04 10:00:00 UTC
登录后复制

发表评论

访客

◎欢迎参与讨论,请在这里发表您的看法和观点。