‹ 首页

cloud-sql-basics

@google · 收录于 1 周前 · 上游提交 昨天★ 社区精选

This file generates or explains Cloud SQL resources. Use this file when the user asks to create a Cloud SQL instance or database for MySQL, PostgreSQL, or SQL Server. Cloud SQL manages third-party MySQL, PostgreSQL, and SQL Server instances as resources in Cloud SQL. For example, when Cloud SQL creates an open-source MySQL instance, the resulting resource is a Cloud SQL for MySQL instance that Google Cloud manages. Cloud SQL handles backups, high availability, and secure connectivity for relational database workloads.

For you if you need to quickly create MySQL, PostgreSQL, or SQL Server database instances on Google Cloud.

/ 通过 npx 安装 校验哈希
npx oh-my-skill add google/skills/cloud-sql-basics
/ 通过 bash 安装
curl -fsSL https://oh-my-skill.com/install.sh | bash -s -- google/skills/cloud-sql-basics
/ 已经装过?验证本机副本,不用重装
npx oh-my-skill verify google/skills/cloud-sql-basics
安装目标可用 --agent / --scope 或 --to 明确指定;省略时只会在唯一已存在的 agent 目录上自动选择,零命中或多命中会停止并提示。content_hash 缺失或不一致均拒装。
GitHub stars
~702最小装载
~3.3K含声明引用
~3.3K文本包总量
索引托管

怎么用

技能原文 SKILL.md作者撰写 · Apache-2.0 · 927b745

Cloud SQL Basics

Cloud SQL is a fully managed relational database service for MySQL, PostgreSQL, and SQL Server. It automates time-consuming tasks like patches, updates, backups, and replicas, while providing high performance and availability for your applications.

Prerequisites

Ensure you have the necessary IAM permissions to create and manage Cloud SQL instances. The Cloud SQL Admin (roles/cloudsql.admin) role provides full access to Cloud SQL resources.

Quick Start (PostgreSQL)
  1. Enable the API:

``bash gcloud services enable sqladmin.googleapis.com --quiet ``

  1. Create an Instance:

``bash gcloud sql instances create INSTANCE_NAME \ --database-version=POSTGRES_18 \ --cpu=2 \ --memory=7680MiB \ --region=REGION \ --quiet ``

  1. Set a password for the default user:

Because this is a Cloud SQL for PostgreSQL instance, the default admin user is postgres:

``bash gcloud sql users set-password postgres \ --instance=INSTANCE_NAME --password=PASSWORD \ --quiet ``

  1. Create a database:

``bash gcloud sql databases create DATABASE_NAME \ --instance=INSTANCE_NAME \ --quiet ``

  1. Get the instance connection name:

You need the instance connection name (which is formatted as PROJECT_ID:REGION:INSTANCE_NAME) to connect using the Cloud SQL Auth Proxy. Retrieve it with the following command:

``bash gcloud sql instances describe INSTANCE_NAME \ --format="value(connectionName)" \ --quiet ``

  1. Connect to the instance:

The Cloud SQL Auth Proxy must be running to be able to connect to the instance. In a separate terminal, start the proxy using the connection name:

``bash ./cloud-sql-proxy INSTANCE_CONNECTION_NAME ``

With the proxy running, connect using psql in another terminal:

``bash psql "host=127.0.0.1 port=5432 user=postgres dbname=DATABASE_NAME password=PASSWORD sslmode=disable" ``

Reference Directory
  • [Core Concepts](references/core-concepts.md): Instance architecture, high availability (HA), and supported database engines.
  • [CLI Usage](references/cli-usage.md): Essential gcloud sql commands for instance, database, and user management.
  • [Client Libraries & Connectors](references/client-library-usage.md): Connecting to Cloud SQL using Python, Java, Node.js, and Go.
  • [MCP Usage](references/mcp-usage.md): Using the Cloud SQL remote MCP server and Gemini CLI extension.
  • [Infrastructure as Code](references/iac-usage.md): Terraform configuration for instances, databases, and users.
  • [IAM & Security](references/iam-security.md): Predefined roles, SSL/TLS certificates, and Auth Proxy configuration.

If you need product information not found in these references, use the Developer Knowledge MCP server search_documents tool.

按 Apache-2.0 许可原样转载,未经改动 · 在 GitHub 查看 →

评论

登录即可评论;带「已验证安装」的,是发布者名下有本店的安装或持有记录。