Created
April 23, 2012 15:21
-
-
Save jennifersmith/2471603 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
# if you already have postgres installed | |
mkdir /tmp/postg | |
sudo mv /usr/include/pg* /tmp/postg | |
gem uninstall pg | |
bundle install | |
#Installing postgres on the LION! | |
brew update | |
brew install postgresql | |
# create database | |
initdb /usr/local/var/postgres | |
# copy to launch agents | |
cp /usr/local/Cellar/postgresql/9.1.3/homebrew.mxcl.postgresql.plist ~/Library/LaunchAgents/ | |
launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist | |
launchctl start homebrew.mxcl.postgresql |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Move old postgres out of the way: