user1907849
user1907849

Reputation: 990

Redis Fails to deploy to Windows Azure after running in emulator

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?

Upvotes: 0

Views: 121

Answers (2)

user1400915
user1400915

Reputation: 1943

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

Upvotes: 0

Mitul Maheshwari
Mitul Maheshwari

Reputation: 2647

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')

Upvotes: 1

Related Questions