If you are running Ubuntu, then there is an issue with folder ownership.
Run these commands:
Stop mongodb service
sudo service mongodb stop
Remove mongodb lock file
sudo rm /var/lib/mongodb/mongod.lock
Change ownership from root to mongodb path
sudo chown -R mongodb:mongodb /var/lib/mongodb/
Start mongodb service
sudo service mongodb start
Test mongo app
mongo
Then you will be able to execute successfully.
Refer:dba.stackexchange
No comments:
Post a Comment