I am running a MongoDB replica set with 3 servers. I recently upgraded from 2.4 to 2.6.
In 2.4, I managed to get to the HTTP console on all three servers, regardless of whether they are primary or secondary. Now with 2.6, there is another configuration option needed to enable the console.
nohttpinterface = false
If I create a completely new, standalone instance with 2.6, it works. However, on a replica set, this is not so. MongoDB runs on 27017, and I confirmed that nothing works on 28017, so it fixes problems with the firewall.
Are there any additional changes needed to enable this feature in the replica set?
source
share