Skip to content

Instantly share code, notes, and snippets.

@arpitanand
Forked from kenzie/.profile
Created January 15, 2016 10:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arpitanand/58961b4d4bd6f585d32b to your computer and use it in GitHub Desktop.
Save arpitanand/58961b4d4bd6f585d32b to your computer and use it in GitHub Desktop.
Start MongoDB and Redis daemons from the command line (OS X)
# add these aliases to your BASH profile ~/.profile
alias mongodb-start="mongod run --config /usr/local/etc/mongod.conf"
alias redis-start="redis-server /usr/local/etc/redis.conf"
# TODO add stop commands
# Add the following to the bottom of /usr/local/etc/mongod.conf
# fork process
fork = true
# log to dev/null
logpath = /dev/null
# Edit this line in /usr/local/etc/redis.conf
# By default Redis does not run as a daemon. Use 'yes' if you need it.
# Note that Redis will write a pid file in /usr/local/var/run/redis.pid when daemonized.
daemonize yes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment