docs:mac:builds:postgresql

This is an old revision of the document!


PostgreSQL

./configure --prefix=/usr/local/pgsql --mandir=/usr/local/man --infodir=/usr/local/info

make

sudo make install

sudo mkdir /usr/local/pgsql/data
sudo chown postgres:postgres /usr/local/pgsql/data
sudo su - postgres
/usr/local/pgsql/bin/initdb -D /usr/local/pgsql/data
(cd to or replace logfile with your desired logfile name)
/usr/local/pgsql/bin/postgres -D /usr/local/pgsql/data >logfile 2>&1 &
/usr/local/pgsql/bin/createdb test 
/usr/local/pgsql/bin/psql test 
  • psql (command line, included with PostgreSQL)
  • pgAdmin (GUI)
  • docs/mac/builds/postgresql.1212992001.txt.gz
  • Last modified: 2008/08/03 00:25
  • (external edit)