跳到主要内容
知仓学习社ZHICANG

cloud-sql-basics

>-

不碰外部(只输出文字)严重 2 · 高危 0google/skills

它会碰到什么

扫了多少8 个文本文件,41 KB
它会碰到什么不碰外部(只输出文字)
命中总数2 处
命中统计严重 2 · 高 0 · 中 0 · 低 0
逐条看命中(2 条严重或高危)
  • 严重 references/core-concepts.md:104instruction-harmful-additive
    -   **Networking:** Network egress and IP address usage.
  • 严重 references/core-concepts.md:109instruction-harmful-additive
    -   **Licensing:** Applies to SQL Server only. In addition to instance and

这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。

技能内容

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:
    gcloud services enable sqladmin.googleapis.com --quiet
  1. Create an Instance:
    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:

    gcloud sql users set-password postgres \
      --instance=INSTANCE_NAME --password=PASSWORD \
      --quiet
  1. Create a database:
    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:

    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:

    ./cloud-sql-proxy INSTANCE_CONNECTION_NAME

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

    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): Cloud SQL editions (Enterprise

& Enterprise Plus), instance architecture, read pools, 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.

  • [Disaster Recovery & Backups](references/dr-backups.md): Backup types,

Point-in-Time Recovery (PITR), replicas, read pools comparison, and Enterprise Plus Advanced DR.

*If you need product information not found in these references, use the

Developer Knowledge MCP server search_documents tool.*

想直接用这个技能?

本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。