Is there a way to see the configuration for managed redis? E.g. for my local redis I connect and can get the SAVE config via
config get save
when accessing redis via redlii there are no config variables available. e.g.
> config get *
(error) ERR unknown command `config`, with args beginning with: `get`, `*`,
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hey @eugeneshifrin,
Most likely, the
CONFIG
command has been disabled as this is a managed service.In case you want to have full control over your Redis instance, you could install Redis on a Droplet so that you will have root access to the server and make any changes to the config that you need to:
https://www.digitalocean.com/community/tutorials/how-to-install-and-secure-redis-on-ubuntu-18-04
Alternatively, in case you want to check a specific value for your existing managed cluster, please reach out to our amazing support team who will be more than happy to assist you :)
Hope that helps!
- Bobby.