mirror of
https://github.com/HackTricks-wiki/hacktricks-cloud.git
synced 2026-01-15 14:23:16 -08:00
836 B
836 B
GCP - Enumeración de Memorystore
{{#include ../../../banners/hacktricks-training.md}}
Memorystore
Reduce la latencia con un servicio en memoria escalable, seguro y altamente disponible para Redis y Memcached. Aprende más.
# Memcache
gcloud memcache instances list --region <region>
gcloud memcache instances describe <INSTANCE> --region <region>
# You should try to connect to the memcache instances to access the data
# Redis
gcloud redis instances list --region <region>
gcloud redis instances describe <INSTACE> --region <region>
gcloud redis instances export gs://my-bucket/my-redis-instance.rdb my-redis-instance --region=us-central1
{{#include ../../../banners/hacktricks-training.md}}