heneryville
heneryville

Reputation: 2929

Event Store on Windows Azure is not accessible externally

Try as I might, I'm unable to access my install of Event Store on Windows Azure. I've followed the instructions exactly recommended in the wiki. Yes. I've got the ports setup correctly in Azure. But none the less, I cannot connect to it from an external machine.

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

Upvotes: 3

Views: 625

Answers (1)

Pharao2k
Pharao2k

Reputation: 695

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

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

In EventStore 3.0 that would mean --ext-ip 0.0.0.0

Upvotes: 8

Related Questions