
Description
Install and configure redisctl CLI for Redis Cloud, Enterprise, and direct database access. Use when setting up redisctl for the first time, creating profiles, or configuring shell completions.
SKILL.md
Overview
redisctl is a unified CLI for managing Redis Cloud, Redis Enterprise, and direct Redis database connections. This skill covers installation, profile setup, and validation.
Installation
Choose one method:
# Homebrew (macOS/Linux)
brew install redis/homebrew-tap/redisctl
# Cargo (from source)
cargo install redisctl
# Docker
docker run --rm -it ghcr.io/redis/redisctl --help
Profile Setup
Profiles store connection credentials. Use the interactive wizard for guided setup:
redisctl profile init
Or create profiles directly:
Redis Cloud Profile
redisctl profile set cloud-prod \
--type cloud \
--api-key "$REDIS_CLOUD_API_KEY" \
--api-secret "$REDIS_CLOUD_API_SECRET"
redisctl profile default-cloud cloud-prod
Redis Enterprise Profile
redisctl profile set ent-staging \
--type enterprise \
--url "https://cluster.internal:9443" \
--username admin \
--password "$RE_PASSWORD"
redisctl profile default-enterprise ent-staging
Direct Database Profile
redisctl profile set local-redis \
--type database \
--url "redis://localhost:6379"
redisctl profile default-database local-redis
Validation
After creating profiles, verify connectivity:
# List all profiles
redisctl profile list
# Show a specific profile
redisctl profile show cloud-prod
# Validate connectivity for all profiles
redisctl profile validate
Shell Completions
Generate completions for your shell:
# Bash
redisctl completions bash > ~/.bash_completion.d/redisctl
# Zsh
redisctl completions zsh > ~/.zfunc/_redisctl
# Fish
redisctl completions fish > ~/.config/fish/completions/redisctl.fish
Common Issues
- Credential errors: Check that environment variables are set and profile type matches the command namespace (cloud profile for cloud commands, etc.)
- Enterprise TLS errors: Use
--insecureflag for self-signed certificates during setup - Config file location: Run
redisctl profile pathto find the config file
More skills from the redisctl repository
View all 17 skillscloud-database-provisioning
provision Redis Cloud databases
Jun 3CloudDatabaseMCPRediscompare-approaches
prototype Redis data model alternatives
May 27Data ModelingDatabasePrototypingRedisdata-explorer
explore and profile Redis datasets
May 28Data AnalysisDatabaseObservabilityRedisdata-modeling-advisor
design Redis data models
May 28ArchitectureData ModelingDatabaseRedisenterprise-health-check
perform Redis Enterprise cluster health checks
Jun 3DatabaseObservabilityOperationsRedisindex-ab-test
compare RediSearch index configurations
May 28A/B TestingDatabasePerformanceRedis +1
More from Redis
View publisheriris-development
integrate with Redis Iris AI products
agent-skills
May 27AgentsAI InfrastructureBackendMemory +1redis-clustering
configure Redis clustering and replication
agent-skills
May 27ArchitectureDatabaseInfrastructurePerformance +1redis-connections
optimize Redis client connections
agent-skills
May 27BackendCachingPerformanceRedisredis-core
model data with Redis structures
agent-skills
May 27ArchitectureData ModelingDatabaseRedisredis-observability
monitor and triage Redis performance
agent-skills
May 27DebuggingMonitoringObservabilityPerformance +1redis-search
implement Redis Search indexing and queries
agent-skills
Jun 24ArchitectureDatabaseEngineeringRedis +1