--- Title: redis-di delete aliases: null alwaysopen: false categories: - docs - integrate - rs - rdi description: Deletes Write-behind database permanently group: di linkTitle: redis-di delete summary: Redis Data Integration keeps Redis in sync with the primary database in near real time. type: integration weight: 10 --- ## Usage ``` Usage: redis-di delete [OPTIONS] ``` ## Options - `loglevel`: - Type: Choice(['DEBUG', 'INFO', 'WARN', 'ERROR', 'CRITICAL']) - Default: `info` - Usage: `--loglevel -log-level` - `cluster_host` (REQUIRED): - Type: STRING - Default: `none` - Usage: `--cluster-host` Host/IP of Redis Enterprise Cluster (service name in case of k8s) - `cluster_api_port` (REQUIRED): - Type: - Default: `9443` - Usage: `--cluster-api-port` API Port of Redis Enterprise Cluster - `cluster_user` (REQUIRED): - Type: STRING - Default: `none` - Usage: `--cluster-user` Redis Enterprise Cluster username with either DB Member, Cluster Member or Cluster Admin roles - `cluster_password`: - Type: STRING - Default: `none` - Usage: `--cluster-password` Redis Enterprise Cluster Password - `rdi_host` (REQUIRED): - Type: STRING - Default: `none` - Usage: `--rdi-host` Host/IP of Write-behind Database - `rdi_port` (REQUIRED): - Type: - Default: `none` - Usage: `--rdi-port` Port of Write-behind Database - `rdi_password`: - Type: STRING - Default: `none` - Usage: `--rdi-password` Write-behind Database Password - `rdi_key`: - Type: STRING - Default: `none` - Usage: `--rdi-key` Private key file to authenticate with - `rdi_cert`: - Type: STRING - Default: `none` - Usage: `--rdi-cert` Client certificate file to authenticate with - `rdi_cacert`: - Type: STRING - Default: `none` - Usage: `--rdi-cacert` CA certificate file to verify with - `rdi_key_password`: - Type: STRING - Default: `none` - Usage: `--rdi-key-password` Password for unlocking an encrypted private key - `force`: - Type: BOOL - Default: `false` - Usage: `--force -f` Force operation. skips verification prompts - `help`: - Type: BOOL - Default: `false` - Usage: `--help` Show this message and exit. ## CLI help ``` Usage: redis-di delete [OPTIONS] Deletes Write-behind database permanently Options: -log-level, --loglevel [DEBUG|INFO|WARN|ERROR|CRITICAL] [default: INFO] --cluster-host TEXT Host/IP of Redis Enterprise Cluster (service name in case of k8s) [required] --cluster-api-port INTEGER RANGE API Port of Redis Enterprise Cluster [default: 9443; 1000<=x<=65535; required] --cluster-user TEXT Redis Enterprise Cluster username with either DB Member, Cluster Member or Cluster Admin roles [required] --cluster-password TEXT Redis Enterprise Cluster Password --rdi-host TEXT Host/IP of Write-behind Database [required] --rdi-port INTEGER RANGE Port of Write-behind Database [1000<=x<=65535; required] --rdi-password TEXT Write-behind Database Password --rdi-key TEXT Private key file to authenticate with --rdi-cert TEXT Client certificate file to authenticate with --rdi-cacert TEXT CA certificate file to verify with --rdi-key-password TEXT Password for unlocking an encrypted private key -f, --force Force operation. skips verification prompts --help Show this message and exit. ```