Skip to content

Enterprise Commands

All Redis Enterprise CLI commands.

Command Reference

Core

Command Group Description
database Database management
cluster Cluster configuration and operations
node Node operations
shard Shard management operations
endpoint Endpoint operations

Access

Command Group Description
user User management
role Role management
acl ACL operations
ldap LDAP integration
ldap-mappings LDAP mappings management
auth Authentication and sessions

Monitoring

Command Group Description
alerts Alert management
stats Statistics and metrics
status Comprehensive cluster status (cluster, nodes, databases, shards)
logs Log operations
diagnostics Diagnostics operations
debug-info Debug info collection

Admin

Command Group Description
license License management
module Module management
proxy Proxy management
services Service management
cm-settings Cluster manager settings
suffix DNS suffix management

Advanced

Command Group Description
crdb Active-Active database (CRDB) operations
crdb-task CRDB task operations
bdb-group Database group operations
migration Migration operations
bootstrap Bootstrap and initialization operations
job-scheduler Job scheduler operations

Troubleshooting

Command Group Description
support-package Support package generation for troubleshooting
ocsp OCSP certificate validation
usage-report Usage report operations
local Local node operations

Other

Command Group Description
action Action (task) operations
workflow Workflow operations for multi-step tasks
jsonschema JSON schema operations

Getting Help

# List all enterprise commands
redisctl enterprise --help

# Help for specific command
redisctl enterprise cluster --help
redisctl enterprise database create --help

Common Options

All commands support:

Option Description
-o, --output Output format: table, json, yaml
-q, --query JMESPath query to filter output
--profile Use specific profile

Examples

# Get cluster info
redisctl enterprise cluster get

# List databases as JSON
redisctl enterprise database list -o json

# Filter with JMESPath
redisctl enterprise node list -o json -q '[].{id: uid, status: status}'