使用 Terraform 创建 Memorystore for Redis 实例

本页介绍如何使用 Terraform 创建新的 Memorystore for Redis 实例,另外还介绍了如何使用 telnet 连接到实例。

本快速入门使用面向 Terraform 的 Google Cloud Platform 提供商

准备工作

  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.

    Go to project selector

  3. Make sure that billing is enabled for your Google Cloud project.

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

    Go to project selector

  5. Make sure that billing is enabled for your Google Cloud project.

  6. 安装 Google Cloud SDK(如果尚未安装)。

    出现提示时,请选择您在上面选择或创建的项目。

  7. 如果您已安装 Google Cloud SDK,请进行更新。

    gcloud components update
  8. 启用 Memorystore for Redis API
    Memorystore for Redis
  9. 具有可向其添加 Memorystore 资源的 Terraform 文件。如需了解如何使用 Google Cloud 设置 Terraform,请参阅 Google Cloud 提供程序使用入门

创建 Memorystore for Redis 实例

以下 Terraform 资源示例在基本级的 us-central1 区域中创建一个 2 GiB 的基本级 Redis 实例。如需详细了解层级,请参阅 Redis 层级功能

  1. 将以下资源添加到 Terraform 配置文件中:

    resource "google_redis_instance" "my_memorystore_redis_instance" {
      name           = "myinstance"
      tier           = "BASIC"
      memory_size_gb = 2
      region         = "us-central1"
      redis_version  = "REDIS_6_X"
    }
    
  2. (可选)添加以下输出值 添加到 Terraform 配置文件,以输出 Redis 的 IP 地址 实例,在本快速入门中用到它:

    output "host" {
     description = "The IP address of the instance."
     value = "${google_redis_instance.my_memorystore_redis_instance.host}"
    }
    
  3. 运行 terraform init

  4. 运行 terraform plan,并查看要创建的资源。

  5. 运行 terraform apply 以创建。

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

接下来,连接到新创建的 Redis 实例。

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

  1. 如果您还没有与 Redis 实例使用同一授权网络的 Compute Engine 虚拟机,请创建一个虚拟机并按照 Linux 虚拟机使用快速入门中的说明连接到该虚拟机。

  2. 使用 apt-get 安装 telnet

    sudo apt-get install telnet
    
  3. 从该终端通过 telnet 连接到 Redis 实例的 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 账号收取费用,请按照以下步骤删除 Redis 实例:

  1. 从 Terraform 配置文件中移除 google_redis_instance 资源。
  2. 运行 Terraform initplanapply 以销毁 Redis 资源。
  3. 删除您为本快速入门创建的任何 Compute Engine 虚拟机。

后续步骤