I am getting this exception. Any clue?
StackExchange.Redis.RedisConnectionException:
It was not possible to connect to the redis server(s); to create a disconnected multiplexer, disable AbortOnConnectFail. 
 Dan Atkinson
 
 11.8k14 gold badges89 silver badges116 bronze badges
 
 1 Answer 1
Possible reasons:
- Is Redis up and running? Try to connect to it using redis-cli.
- Is your connection settings to Redis right in your code (i.e. you're connecting to the right host and port...)?
The exception is quite expressive: ConnectionMultiplexer couldn't reach target Redis server.
 answered Oct 3, 2015 at 8:54
 
 
 
 Matías Fidemraizer 
 
 65.1k19 gold badges132 silver badges216 bronze badges
 
 
 Sign up to request clarification or add additional context in comments.