Connection refused to MongoDB errno 111

Thanks for the help everyone!

Turns out that it was an iptable conflict. Two rules listing the port open (which resulted in a closed port).

However, one of the comments by aka and another by manu2013 were problems that I would have run into, if not for the conflict.

So! Always remember to edit the /etc/mongod.conf file and set your bind_ip = 0.0.0.0 in order to make connections externally.

Also, make sure that you don’t have conflicting rules in your iptable for the port mongo wants (see link on mongodb’s site to set up your iptables properly).

Leave a Comment