macOSのredis-cliからredis-serverにSSL接続する
Azure Redis Cache を触っていて、redis-cliがSSLに対応されていないことを知りました。
で、ググっていたら、こんな情報を発見しました。
このmacOS版みたいな感じです。圧倒的感謝です。
Azure Redis Cacheにredis-cliで接続する (SSLで)
http://www.windows-maniax.com/kuniteru/azure1319.html
redis-cli
のバージョン
$ redis-cli --version
redis-cli 4.0.2
stunnel.confの編集
$ redis-cli --version
redis-cli 4.0.2
自分の場合は新規作成。
$ vi /usr/local/etc/stunnel/stunnel.conf
内容はこんな感じ。Azureの例。
[redis-cli]
client = yes
accept = 127.0.0.1:6379
connect = ${your-redis-name}.redis.cache.windows.net:6380
# connect = example.redis.cache.windows.net:6380
起動
こんな感じでつながる。
$ redis-server
$ stunnel
$ redis-cli -h localhost
127.0.0.1:6379> auth this-is-primary-or-secondary's-access-key
OK
Author And Source
この問題について(macOSのredis-cliからredis-serverにSSL接続する), 我々は、より多くの情報をここで見つけました https://qiita.com/momoiroshikibu/items/589be0515a95b89c7520著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .