The event store in Windows Azure is not accessible from the outside

Try as best I could, I can't access my Event Store setup in Windows Azure. I followed the instructions on the wiki . Yes. I have configured the ports in Azure correctly. But still, I cannot connect to it from an external machine.

On a separate machine if I do curl {{mydomain}}. cloudapp.net time is running out but on Azure VM if I curl localhost I get Moved (redirect to full admin)

+3


source to share


1 answer


Perhaps you are only listening on localhost and not the VIP / network IP of your Azure VM? Would explain why curl to localhost works, but nothing external.

You will need to bind to all interfaces or your internal ip as described in a similar google gorups question



In EventStore 3.0 that would mean -ext-ip 0.0.0.0

+6


source







All Articles