Skip to content

Instantly share code, notes, and snippets.

@outsideris
Created April 23, 2013 17:58
Show Gist options
  • Save outsideris/5445858 to your computer and use it in GitHub Desktop.
Save outsideris/5445858 to your computer and use it in GitHub Desktop.
OSX Setting command
# PostgreSql (homebrew로 설치)
$ initdb /usr/local/var/postgres -E utf8
## to Start
$ pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start
## 상태확인
$ pg_ctl -D /usr/local/var/postgres status
## stop
pg_ctl -D /usr/local/var/postgres stop -s -m fast
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment