Skip to content

Instantly share code, notes, and snippets.

@adamgibbons
Last active January 17, 2023 15:17
Show Gist options
  • Save adamgibbons/cc7b263ab3d52924d83b to your computer and use it in GitHub Desktop.
Save adamgibbons/cc7b263ab3d52924d83b to your computer and use it in GitHub Desktop.
Install MongoDB on Mac OS X 10.9

Install MongoDB with Homebrew

brew install mongodb
mkdir -p /data/db

Set permissions for the data directory

Ensure that user account running mongod has correct permissions for the directory:

sudo chmod 0755 /data/db
sudo chown $USER /data/db

Run MongoDB!

iTerm buffer 1: mongod
iTerm buffer 2: mongo


Note: If you get something like this:

exception in initAndListen: 10309 Unable to create/open lock file: /data/db/mongod.lock errno:13 Permission denied Is a mongod instance already running?, terminating

It means that /data/db lacks required permission and ownership.

Run ls -ld /data/db/

Output should look like this (gibber is directory owner and wheel is group to which gibber belongs):

drwxr-xr-x  7 gibber  wheel  238 Aug  5 11:07 /data/db/
@floriangbh
Copy link

floriangbh commented Nov 29, 2016

Hello ! Thank you !
In my case : sudo chown -R $USER /data/configdb/ , make it work !

@waltonryan
Copy link

Thank you!

@safaorhan
Copy link

Thanks a lot!

@lwjameson
Copy link

Fantastic! Thanks.

@heyitsjhu
Copy link

Thanks for this!

@Atlas-zqh
Copy link

Thanks!

@kristynrb
Copy link

thanks! 👍

@mltbnz
Copy link

mltbnz commented Jun 20, 2017

✌️ Thanks

@GiselleC
Copy link

Thanks!!!

@anvarbey
Copy link

You are very useful to humans , keep alive!

@GitPatrickHarris
Copy link

This is huge, thank you so much.

@Harkishen-Singh
Copy link

This was the best of all, i have ever read on mongo prob...!

@dazyang
Copy link

dazyang commented Aug 21, 2018

Finally, this solved the problem I was having! Thanks so much.

@lfhwnqe
Copy link

lfhwnqe commented Sep 29, 2018

thanks so much

@falehenrique
Copy link

thanks, it works to me.

@HarrisonFok
Copy link

How come it's still giving me an error when I ran all of these?

Permission denied src/mongo/db/storage/wiredtiger/wiredtiger_kv_engine.cpp 416

@akashverma24
Copy link

Thank you. This works !!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment