I\'ve installed CouchDB on my vagrant 0.9.0 box that is running CentOS 6.2.
vagrant 0.9.0
CentOS 6.2
In Vagrantfile I\'ve added config.vm.forward_por
config.vm.forward_por
in my case, the solution to a very similar problem was much more obvious: coming from ubuntu, I didn't expect a firewall to be running on the centos box
this will disable it:
sudo service iptables stop
thanks to this blog!