Question

After deploying the redis application in azure , not able to deploy it in cloud. Error : An existing connection was forcibly closed by remote host.

What could be the reason for this?

Was it helpful?

Solution 2

Check your internet connection.Likely to be an issue with the connectivity and speed.

OTHER TIPS

For that you will have to give the cloud private ip address to the redis connection.

import redis.clients.jedis.Jedis

Jedis jedis = new Jedis('private ip',6379,'15000')
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top