cinience / RedisStudio

RedisStudio Redis GUI client(tool) for windows
https://github.com/cinience/RedisStudio
1.55k stars 394 forks source link

Azure cache for redis connection #51

Open jmglezgz opened 3 years ago

jmglezgz commented 3 years ago

Hi guys, Thanks for this tool!, really appreciated... Is it possible to connect Azure cache for redis?

Which is the configuration?

Thanks so much, Jose

hero3616 commented 2 years ago

Yes I connect to Azure Redis using this tool (RedisStudio-en-0.1.5.exe). You have to use stunnel. Configured stunnel on port 6380.

stunnel configuration (on Windows):

[redis-cli]
client = yes
accept = 127.0.0.1:6380
connect = <name of azure redis>.redis.cache.windows.net:6380

RedisStudio configuration (Config.json that it generates):

{
    "name": "Azure-Redis-stunnel",
    "ip": "127.0.0.1",
    "port": 6380,
    "auth": "173aY9aGv7bFQvAypGJFOTxpEvL1R7ZWQAzCaAFCMYQ="
}