Created
April 23, 2013 17:58
-
-
Save outsideris/5445858 to your computer and use it in GitHub Desktop.
OSX Setting command
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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