Created
April 28, 2017 01:03
-
-
Save ateucher/52e00698d09a2d22dbb3d54b7290d803 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
Commands that got postgres (installed via homebrew) running for me: | |
$ rm -rf /usr/local/var/postgres | |
$ initdb /usr/local/var/postgres -E utf8 | |
$ pg_ctl -D /usr/local/var/postgres -l logfile start | |
$ createuser -s postgres | |
$ python designatedlands.py create_db | |
From: | |
http://stackoverflow.com/questions/7975556/how-to-start-postgresql-server-on-mac-os-x | |
and | |
http://stackoverflow.com/questions/15301826/psql-fatal-role-postgres-does-not-exist |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment