简体   繁体   中英

How to connect Azure Redis Cache to Redsmin

我看不到如何通过激活到Redsmin GUI帐户的SSL连接到Azure Redis缓存。

First you need your azure redis cache primary key (eg TkloUGvd+Eosuqr9keFhyH+A/6wRz0lcT6V ), host (eg myredis.redis.cache.windows.net ) and port (eg 6380 ).

Thus your redis connection string will be something like this

redis://TkloUGvd+Eosuqr9keFhyH+A/6wRz0lcT6V@myredis.redis.cache.windows.net:6380

Then you will need to extract the certificate from windows azure in PEM format you can run the above command to do so:

openssl x509 -in <(openssl s_client -connect SERVER:SSL_PORT -prexit 2>/dev/null)

Finally just create a new "Publicly available (SSL/TLS)" server and enter both the connection string and the certificate public key et voila!

A step-by-step guide is also available in Redsmin knowledge database.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM