Membuat instance Memorystore for Memcached menggunakan konsol Google Cloud

Panduan memulai ini akan memandu Anda melalui langkah-langkah untuk membuat instance Memorystore for Memcached, terhubung ke instance, menetapkan nilai, mengambil nilai, dan menghapus instance.

Sebelum memulai

  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. Aktifkan Service Networking API untuk project Anda.
    Mengaktifkan Service Networking API
  7. Aktifkan Memorystore for Memcached API untuk project Anda.
    Mengaktifkan Memorystore for Memcached API

Membuat instance Memcached

  1. Buka halaman Memorystore untuk Memcached di konsol Google Cloud.
    Memorystore for Memcached

  2. Klik tombol Create Instance.

  3. Pilih konfigurasi untuk instance baru Anda di halaman Create a Memcached instance di konsol Google Cloud:

    • Masukkan ID instance yang hanya berisi huruf kecil, angka, dan tanda hubung. Awali dengan huruf.
      • Misalnya, my-memcached-instance-1.
    • Pilih us-central1 dari dropdown Region.
    • Pilih Automatically distribute dari dropdown Zone.
    • Masukkan 2 di bagian Nodes untuk membuat dua node.
    • Pilih Memory per node sebesar 1 GB.
    • Pilih 1 untuk Core per node.
    • Pilih default untuk Authorized network.

  4. Klik Create.

  5. Setelah instance dibuat, klik ID instance untuk melihat halaman detail instance.

  6. Catat IP address salah satu node Anda.

Menghubungkan ke instance dari VM Compute Engine

Untuk menguji koneksi:

  1. Menghubungkan ke VM Linux. Untuk mengetahui langkah-langkah menghubungkan ke VM Linux, lihat Panduan Memulai Menggunakan VM Linux. Jika Anda menggunakan image berbasis Debian untuk membuat instance VM seperti yang dijelaskan dalam panduan memulai, instal telnet menggunakan apt-get:

    sudo apt-get install telnet
    
  2. Dari terminal, telnet ke alamat IP salah satu node Memcached. Ganti node-ip-address dengan alamat IP node Anda.

    telnet node-ip-address 11211
    

    Anda akan melihat output berikut dengan [bracketed-variables] menggantikan variabel project Anda:

    Trying [node-ip-address]…
    Connected to [node-ip-address]
    
  3. Dalam sesi telnet, masukkan beberapa perintah Memcached:

    Enter:

    get greeting
    

    Hasil:

    END
    

    Enter:

    set greeting 1 0 11
    hello world
    

    Hasil:

    STORED
    

    Enter:

    get greeting
    

    Hasil:

    VALUE greeting 1 11
    hello world
    END
    

Memorystore for Memcached mendukung library Memcached open source standar.

Pembersihan

Agar tidak menimbulkan biaya pada akun Google Cloud Anda untuk resource yang digunakan pada halaman ini, ikuti langkah-langkah berikut.

  1. Buka halaman Memorystore untuk Memcached di konsol Google Cloud.
    Memorystore for Memcached

  2. Klik ID instance yang ingin Anda hapus.

  3. Klik tombol Hapus.

  4. Pada perintah yang muncul, masukkan ID instance.

  5. Klik tombol Hapus.

Langkah selanjutnya