Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
You normally don’t need to uncompress archived logs to view them. Normally you should have a programm called zless in your Linux distribution, so you could just use it like so:
zless /var/log/redis/redis-server.log.1.gz
(Press “G” to move to the bottom of the file)
Nice introduction to Redis logging management @sharon, it will be shared in our next RedisWeekly tomorrow morning!
find /var/log/* -name *redis*
should be
find /var/log -name \*redis\*
or
find /var/log -name '*redis*'
unless you are more than 100% sure you don’t have a *redis* file in your current working directory.