使用 Google Cloud 控制台创建 Memorystore for Redis 实例

了解如何创建 Memorystore for Redis 实例、连接该实例以及将其删除。


如需在 Google Cloud 控制台中直接遵循有关此任务的分步指导,请点击操作演示

操作演示


准备工作

  1. Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
  2. In the Google Cloud console, on the project selector page, select or create a Google Cloud project.

    Roles required to select or create a project

    • Select a project: Selecting a project doesn't require a specific IAM role—you can select any project that you've been granted a role on.
    • Create a project: To create a project, you need the Project Creator role (roles/resourcemanager.projectCreator), which contains the resourcemanager.projects.create permission. Learn how to grant roles.

    Go to project selector

  3. 如果您要使用现有项目来完成本指南,请验证您是否拥有完成本指南所需的权限。如果您创建了新项目,则您已拥有所需的权限。

  4. Verify that billing is enabled for your Google Cloud project.

  5. Enable the Memorystore for Redis API.

    Roles required to enable APIs

    To enable APIs, you need the Service Usage Admin IAM role (roles/serviceusage.serviceUsageAdmin), which contains the serviceusage.services.enable permission. Learn how to grant roles.

    Enable the API

  6. In the Google Cloud console, on the project selector page, select or create a Google Cloud project.

    Roles required to select or create a project

    • Select a project: Selecting a project doesn't require a specific IAM role—you can select any project that you've been granted a role on.
    • Create a project: To create a project, you need the Project Creator role (roles/resourcemanager.projectCreator), which contains the resourcemanager.projects.create permission. Learn how to grant roles.

    Go to project selector

  7. 如果您要使用现有项目来完成本指南,请验证您是否拥有完成本指南所需的权限。如果您创建了新项目,则您已拥有所需的权限。

  8. Verify that billing is enabled for your Google Cloud project.

  9. Enable the Memorystore for Redis API.

    Roles required to enable APIs

    To enable APIs, you need the Service Usage Admin IAM role (roles/serviceusage.serviceUsageAdmin), which contains the serviceusage.services.enable permission. Learn how to grant roles.

    Enable the API

  10. 所需的角色

    如需获得创建 Memorystore for Redis 实例所需的权限,请让管理员向您授予项目的以下 IAM 角色:

    如需详细了解如何授予角色,请参阅管理对项目、文件夹和组织的访问权限

    您也可以通过自定义角色或其他预定义角色来获取所需的权限。

创建 Memorystore for Redis 实例

在本部分中,您将创建一个位于 us-central1 区域且属于基本层级的 2 GB Memorystore for Redis 实例。如需详细了解层级,请参阅 Redis 层级功能

  1. 在 Google Cloud 控制台中,前往 Memorystore for Redis 页面。

    Memorystore for Redis

  2. 点击创建实例

  3. 创建 Redis 实例页面上,为要创建的实例进行以下配置:

    • 实例 ID 字段中,输入 my-instance-1
    • 显示名称字段中,输入 My Quickstart Instance
    • 层级选择部分中,选择基本。与使用副本节点来备份数据的标准层级相反,此层级指定独立的 Redis 节点。
    • 容量字段中,输入 5。这会将您的实例容量设置为 5 GB。
    • 区域菜单中,选择 us-central1(爱荷华)
    • 网络菜单中,选择默认
    • 展开配置节点,然后从版本菜单中选择
      7.2(推荐)
  4. 点击创建实例

  5. 创建实例后,请按照以下步骤获取实例的 IP address

    1. 在 Google Cloud 控制台中,前往 Memorystore for Redis 页面。
      Memorystore for Redis
    2. 点击实例的 ID:my-instance-1
    3. 连接部分,记下实例的主要端点和端口号 6379您需要使用端点和端口号来连接到实例。

从 Compute Engine 虚拟机连接到 Memorystore for Redis 实例

您可以从任何具有支持的 RFC 1918 IP 地址且使用 Memorystore for Redis 实例的授权网络的 Compute Engine 虚拟机连接到该实例。

  1. 如果您还没有与实例使用同一授权网络的 Compute Engine 虚拟机,请创建一个虚拟机并使用 SSH 连接到该虚拟机。为此,请按照在 Compute Engine 中创建 Linux 虚拟机实例中的步骤操作。

  2. 使用 apt-get 安装 telnet

    sudo apt-get install telnet
    
  3. 从终端通过 telnet 连接到实例的 IP 地址。将 VARIABLES 替换为适当的值。

    telnet INSTANCE_IP_ADDRESS 6379
    

    如果您可以连接到实例,则该命令会返回以下结果:

    Trying INSTANCE_IP_ADDRESS…
    Connected to INSTANCE_IP_ADDRESS
    
  4. 在 telnet 会话中,输入一些 Redis 命令:

    请输入:

    PING
    

    结果:

    PONG
    

    输入

    SET HELLO WORLD
    

    结果:

    +OK
    

    请输入:

    GET HELLO
    

    结果:

    $5
    WORLD
    

清理

为避免因本页中使用的资源导致您的 Google Cloud 账号产生费用,请按照以下步骤操作。

  1. 在 Google Cloud 控制台中,前往 Memorystore for Redis 页面。
    Memorystore for Redis
  2. 点击要删除的实例的 ID。
  3. 点击删除
  4. 在出现的提示符处,输入实例 ID。
  5. 点击删除
  6. 可选。如果您为此快速入门创建了 Compute Engine 虚拟机,请删除该虚拟机。

后续步骤