Skip to content

Getting Started

Get up and running with redisctl in minutes.

Choose Your Path

  • Try with Docker


    No installation required. Run commands immediately.

    docker run ghcr.io/redis-developer/redisctl --help
    

    Docker guide

  • Install Locally


    Homebrew, Cargo, or download binaries.

    Installation

Quick Example

# Set credentials
export REDIS_CLOUD_API_KEY="your-api-key"
export REDIS_CLOUD_SECRET_KEY="your-secret-key"

# List your subscriptions
redisctl cloud subscription list

# Get databases in a subscription
redisctl cloud database list --subscription-id 123456
# Set credentials
export REDIS_ENTERPRISE_URL="https://cluster.example.com:9443"
export REDIS_ENTERPRISE_USER="admin@cluster.local"
export REDIS_ENTERPRISE_PASSWORD="your-password"

# Get cluster info
redisctl enterprise cluster get

# List databases
redisctl enterprise database list

Next Steps

  1. Installation - Install redisctl on your system
  2. Quick Start - Run your first commands
  3. Authentication - Set up profiles for multiple environments