automation-suite
2023.4
false
- 概述
- 要求
- 安装
- 安装后
- 集群管理
- 监控和警示
- 迁移和升级
- 特定于产品的配置
- 最佳实践和维护
- 故障排除
如何清除 Redis 数据
重要 :
请注意此内容已使用机器翻译进行了部分本地化。
Linux 版 Automation Suite 安装指南
Last updated 2024年9月5日
如何清除 Redis 数据
要清除 Redis 中存储的所有数据并将其重置为空状态,请执行以下步骤:
-
识别密钥名称、密码和端口:
export KUBECONFIG="/etc/rancher/rke2/rke2.yaml"; export PATH=$PATH:/var/lib/rancher/rke2/bin; secretName=$(kubectl get redb redis-cluster-db -o jsonpath="{.spec.databaseSecretName}" -n redis-system) password=$(kubectl get secret $secretName -o jsonpath="{.data.password}" -n redis-system | base64 --decode) port=$(kubectl get secret $secretName -o jsonpath="{.data.port}" -n redis-system | base64 --decode)
export KUBECONFIG="/etc/rancher/rke2/rke2.yaml"; export PATH=$PATH:/var/lib/rancher/rke2/bin; secretName=$(kubectl get redb redis-cluster-db -o jsonpath="{.spec.databaseSecretName}" -n redis-system) password=$(kubectl get secret $secretName -o jsonpath="{.data.password}" -n redis-system | base64 --decode) port=$(kubectl get secret $secretName -o jsonpath="{.data.port}" -n redis-system | base64 --decode) -
识别服务名称:
kubectl get secret $secretName -o jsonpath="{.data.service_names}" -n redis-system | base64 --decode
kubectl get secret $secretName -o jsonpath="{.data.service_names}" -n redis-system | base64 --decode -
假设上一个命令的输出是:
redis-cluster-db, redis-cluster-db-headless
。您必须调用以下FLUSHALL
命令:kubectl exec -ti -n redis-system redis-cluster-0 -- redis-cli -h redis-cluster-db -p $port -a $password FLUSHALL kubectl exec -ti -n redis-system redis-cluster-0 -- redis-cli -h redis-cluster-db-headless -p $port -a $password FLUSHALL
kubectl exec -ti -n redis-system redis-cluster-0 -- redis-cli -h redis-cluster-db -p $port -a $password FLUSHALL kubectl exec -ti -n redis-system redis-cluster-0 -- redis-cli -h redis-cluster-db-headless -p $port -a $password FLUSHALL