简体   繁体   中英

Redis password for AWS ElastiCache

I am using KUE, on EC2, and setting up an external ElastiCache Redis storage. It appears ElastiCache does not use password (auth), but instead relies on Security Groups. So do I need to leave the redis password (???) param empty?

redis: {
  port: 6379 //process.env.REDIS_PORT,
  host: blah.44444z.0001.usw1.cache.amazonaws.com //process.env.REDIS_HOST,
  auth: ??? //process.env.REDIS_PASS,
  options: {
  }
}

By default, there is no password for elasticache. Unless you enable it from within the "encryption in transit", it is not available as an option.

Try to remove 'auth' and see if this works.

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