本文介绍了使用传输中加密连接到 AWS ElastiCache的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

加密的 ElastiCache 使用 TLS 与 redis 客户端通信,但正如我所见,在为我们配置 TLS 客户端时,所有语言(ioredis、predis、go-redis)的 redis 客户端都需要一个 pem 文件.

ElastiCache with encryption uses TLS to communicate with redis client, yet as I've seen redis clients in all languages (ioredis, predis, go-redis) require a pem file when configuring the client to us TLS.

如何在不提供 TLS 证书的情况下使用传输中加密连接到 Elasticache?

How can I connect to Elasticache with in-transit encryption without given the ceritificate for the TLS?

推荐答案

solution - 不需要证书,只需要在客户端启用 TLS(例如 ioredis 只是拥有 tls: {}

solution - no certificate is needed, just to enable TLS in the client (ioredis for example is just to have tls: {}

这篇关于使用传输中加密连接到 AWS ElastiCache的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-03 12:33