Trying to create a "Hello world" EventStore proof-of-concept using a single-node EventStore installation on a Vagrant Ubuntu box.
Relevant portion of Vagrantfile:
config.vm.define :eventstore do |x|
x.vm.box = "ubuntu/trusty64"
x.vm.provider :virtualbox do |v|
v.name = "eventstore"
v.customize ["modifyvm", :id, "--memory", 3000]
end
x.vm.network :private_network, ip: 10.211.54.20
x.vm.hostname = "eventstore"
x.vm.network "forwarded_port", guest: 2113, host: 12113
end
Once up and running, I ran the following commands from my Vagrant SSH:
Service seemed up and running. From the Vagrant box, I can access the UI internally like so:
However, from my host machine (running Windows 7) Chrome browser, I can't seem to connect:
Please clue this newbie in: what obvious and important step have I missed here?