您可以使用以下命令查询 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: myuser@example.com
Create time: 2020-04-04 10:00:00 UTC
以上就是mysql实例怎么查询的详细内容,更多请关注编程网其它相关文章!