I\'m running a 3 server MongoDB replica set. I recently upgraded from 2.4 to 2.6.
On 2.4 I was able to reach the HTTP Console on all three servers, regardless of whethe
For mongodb v3.0.2 the mongod.conf is a yaml file, you should add these two lines after net:
http.enabled: true http.RESTInterfaceEnabled: true
my mongod.conf is
net: bindIp: 127.0.0.1 http.enabled: true http.RESTInterfaceEnabled: true