Hi I am trying to connect to a redis server listening on port 6379 on AWS EC2 linux server.
container.Register<IRedisClientsManager>(c => new PooledRedisClientManager(new[] {"XX.XXX.XX.XXX:6379"}));
I performed following steps , created a inbound rule as Custom TCP allowing 6379 port ,and changing redis.conf bind to XX.XXX.XX.XXX:6379 or 0.0.0.0 but still unable to connect to server , can anyone help.
Here is my inbound rule on AWS
Custom TCP Rule TCP 6379 0.0.0.0/0
/etc/redis/redis.conf
withbind 0.0.0.0
entry just to make sure? - Darren Reid