Mongo: couldn't connect to server 127.0.0.1:27017 at src/mongo/shell/mongo.js:145 Mongo: couldn't connect to server 127.0.0.1:27017 at src/mongo/shell/mongo.js:145 mongodb mongodb

Mongo: couldn't connect to server 127.0.0.1:27017 at src/mongo/shell/mongo.js:145


I assume that you followed the steps, outlined here.

Most probably you have a problem with mongo lock (or at least I had it once while installing on ubuntu). I solved it with the following commands:

sudo rm /var/lib/mongodb/mongod.locksudo service mongodb restart

P.S. I by myself recently experienced this problem when I was updating my amazon ec2 instance. I have not properly shut down mongo before doing this and this resulted in a problem with mongo lock.


Check your log file of mongodb. you will get to know the exact issue.

tail -f /var/log/mongodb/mongodb.log

The issue may because of "ERROR: Insufficient free space for journal files"

Increase your volume space that will fix your issue.


If you got this after a restart... Make sure that you have over 3GB+ of space free else Mongo Won't start.