Files
oam/knowledge base/redis.md
2022-05-15 00:24:53 +02:00

12 lines
231 B
Markdown

# Redis
## TL;DR
```sh
# debug the server
redis-cli -h "${HOST}" -p "${PORT}" --user "${USERNAME}" --askpass MONITOR
# execute the commands from the master's container on kubernetes
kubectl exec redis-0 -- redis-cli MONITOR
```