redis-cli ping
. If you don't get a PONG response, the server might be down or not reachable.tail -n 100 /var/log/redis/redis-server.log
(path may vary).redis-cli info memory
. Look for the used_memory
and maxmemory
settings to ensure you're not hitting memory limits.redis-cli info stats
and check instantaneous_ops_per_sec
for operations per second. High numbers could indicate overload.df -h
.redis-cli info clients
to check active connections and see if you're hitting the maxclients
limit.redis-cli cluster info
and redis-cli cluster nodes
to ensure all nodes are up and connected.Let Dr. Droid create custom investigation plans for your infrastructure.
Book Demo