복붙노트

[REDIS] 인 - 교통 암호화와 AWS ElastiCache에 연결

REDIS

인 - 교통 암호화와 AWS ElastiCache에 연결

암호화 ElastiCache 내가 모든 언어 (ioredis, predis, 이동 - 레디 스) 우리 TLS 클라이언트를 구성 할 때 PEM 파일을 필요에 레디 스 클라이언트를 본 적이 아직로서, 레디 스 클라이언트와 통신하는 TLS를 사용합니다.

TLS에 대한 인증서를 부여하지 않고 어떻게에서-전송 암호화 Elasticache에 연결할 수 있습니까?

해결법

  1. ==============================

    1.솔루션 - 인증서가 바로 클라이언트에서 TLS를 활성화하려면 필요하지 않습니다 (예를 들어 ioredis는 TLS를 가지고 그냥 : {}

    솔루션 - 인증서가 바로 클라이언트에서 TLS를 활성화하려면 필요하지 않습니다 (예를 들어 ioredis는 TLS를 가지고 그냥 : {}

  2. ==============================

    2.여기 Predis를 사용하여 내 작업 데모 코드입니다.

    여기 Predis를 사용하여 내 작업 데모 코드입니다.

    $servers = ['tls://master.my-test-redis.8juowe.euw2.cache.amazonaws.com:6379']; // your endpoint
    $options = ['parameters' => ['password' =>   $password ]]; // put your password here
    $redis   = new Predis\Client($servers, $options ); // Instance your client
    
  3. from https://stackoverflow.com/questions/47635016/connect-to-aws-elasticache-with-in-transit-encryption by cc-by-sa and MIT license